1. make use of precompiled headers everywhere

2. moved some unicode stubs out of the ansi stub file

svn path=/trunk/; revision=10793
This commit is contained in:
Thomas Bluemel
2004-09-06 21:15:46 +00:00
parent a961785e1d
commit ccbc81e0fa
25 changed files with 329 additions and 333 deletions
+1 -1
View File
@@ -4088,7 +4088,7 @@ DWORD
STDCALL
GdiGetCharDimensions(HDC hdc,LPTEXTMETRICW lptm,BOOL unk);
PSHAREDHANDLETABLE
PVOID
STDCALL
GdiQueryTable(VOID);
+13
View File
@@ -163,6 +163,7 @@ NtUserCallNextHookEx(
#define NOPARAM_ROUTINE_GETMESSAGEEXTRAINFO 0xffff0005
#define NOPARAM_ROUTINE_ANYPOPUP 0xffff0006
#define NOPARAM_ROUTINE_CSRSS_INITIALIZED 0xffff0007
#define NOPARAM_ROUTINE_GDI_QUERY_TABLE 0xffff0008
DWORD
STDCALL
NtUserCallNoParam(
@@ -1765,6 +1766,18 @@ typedef struct tagKMDDELPARAM
} Value;
} KMDDELPARAM, *PKMDDELPARAM;
#include <pshpack1.h>
typedef struct _GDI_TABLE_ENTRY
{
PVOID KernelData; /* Points to the kernel mode structure */
unsigned short ProcessId; /* process id that created the object, 0 for stock objects */
unsigned short Count; /* we don't use this field, only NT4 uses it */
unsigned short Upper; /* copy of the upper 16 bit of the handle, contains the object type */
unsigned short nType; /* object type */
PVOID UserData; /* Points to the user mode structure, usually NULL though */
} GDI_TABLE_ENTRY, *PGDI_TABLE_ENTRY;
#include <poppack.h>
#endif /* __WIN32K_NTUSER_H */
/* EOF */