"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).