Author: greatlrd
Date: Fri Aug 24 18:46:06 2007
New Revision: 28516
URL: http://svn.reactos.org/svn/reactos?rev=28516&view=rev
Log:
the NtGdiEngCreateDeviceSurface got 4 param, see syscall table. and official doc from msdn and osr say only 3, we can clear see it is 4 param in the syscall table.
and I name it the four param as UNKNOWN for now.
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:46:06 2007
@@ -2971,7 +2971,8 @@
NtGdiEngCreateDeviceSurface(
IN DHSURF dhsurf,
IN SIZEL sizl,
- IN ULONG iFormatCompat
+ IN ULONG iFormatCompat,
+ IN DWORD UNKNOWN
);
W32KAPI
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