Author: greatlrd
Date: Fri Aug 24 18:24:49 2007
New Revision: 28515
URL:
http://svn.reactos.org/svn/reactos?rev=28515&view=rev
Log:
NtGdiEngCreateDeviceBitmap need four param the last param are undoc in msdn/osr
at moment I do have small clude what it is use for. But I name it to UNKNOWN,
you can check the syscall table and u see it is 4 param not 3 it need.
Modified:
trunk/reactos/include/psdk/ntgdi.h
Modified: trunk/reactos/include/psdk/ntgdi.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/psdk/ntgdi.h?rev=2…
==============================================================================
--- trunk/reactos/include/psdk/ntgdi.h (original)
+++ trunk/reactos/include/psdk/ntgdi.h Fri Aug 24 18:24:49 2007
@@ -2980,7 +2980,8 @@
NtGdiEngCreateDeviceBitmap(
IN DHSURF dhsurf,
IN SIZEL sizl,
- IN ULONG iFormatCompat
+ IN ULONG iFormatCompat,
+ IN DWORD UNKNOWN
);
W32KAPI