Commit 76e86d5f authored by Richard Cohen's avatar Richard Cohen Committed by Alexandre Julliard

Revert bogus spelling "fix".

parent 38f64727
......@@ -240,7 +240,7 @@ struct IDirect3DVtbl {
and initialize the lpVtbl field to point to this variable.
</para>
<para>
The IDirect3D_Xxx macros then just difference the lpVtbl
The IDirect3D_Xxx macros then just dereference the lpVtbl
pointer and use the function pointer corresponding to the
macro name. This emulates the behavior of a virtual table
and should be just as fast.
......@@ -300,7 +300,7 @@ struct IDirect3DVtbl {
<para>
Since IDirect3D does double duty, each ICOM_METHOD macro
defines both a function pointer and a non-virtual inline
method which differences it and calls it. This way this
method which dereferences it and calls it. This way this
method behaves just like a virtual method but does not
create a true C++ virtual table which would break the
structure layout. If you look at the implementation of these
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment