don't shift the PIDs of objects so the first bit can be used to lock objects, as...
[reactos.git] / reactos / include / win32k / ntuser.h
index 13983b0..71f3914 100644 (file)
@@ -1814,7 +1814,7 @@ typedef struct tagKMDDELPARAM
 typedef struct _GDI_TABLE_ENTRY
 {
   PVOID KernelData; /* Points to the kernel mode structure */
-  LONG ProcessId;   /* process id that created the object, 0 for stock objects */
+  HANDLE ProcessId; /* process id that created the object, 0 for stock objects */
   LONG Type;        /* the first 16 bit is the object type including the stock obj flag, the last 16 bits is just the object type */
   PVOID UserData;   /* Points to the user mode structure, usually NULL though */
 } GDI_TABLE_ENTRY, *PGDI_TABLE_ENTRY;