From bd1e7500b265754e86b3c3a2f82ae481eab9a31e Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Fri, 24 Aug 2007 14:24:49 +0000 Subject: [PATCH] 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. svn path=/trunk/; revision=28515 --- reactos/include/psdk/ntgdi.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reactos/include/psdk/ntgdi.h b/reactos/include/psdk/ntgdi.h index 1afc9671e6a..51f669cf857 100644 --- a/reactos/include/psdk/ntgdi.h +++ b/reactos/include/psdk/ntgdi.h @@ -2980,7 +2980,8 @@ APIENTRY NtGdiEngCreateDeviceBitmap( IN DHSURF dhsurf, IN SIZEL sizl, - IN ULONG iFormatCompat + IN ULONG iFormatCompat, + IN DWORD UNKNOWN ); W32KAPI