Dmitry Timoshkov wrote:
"Robert Shearman" rob@codeweavers.com wrote:
Use LPCVOID instead of PCVOID.
This is ntdll code and LPCVOID is a Win32 type. Don't use Win32 types in ntdll code.
Then simple 'const void *' should do the trick, since introducing PCVOID is not an option (a quick search reveals that it doesn't exist in PSDK).
Except that PSDK has it as PVOID. So we should stay away as much as possible from modifying what's in DDK/SDK.
So I'm guessing this one will have to stay the way it is.
Vitaliy.