some stuff
Modified: branches/win32k rewrite attempt/inc_w32k/misc.h
Modified: branches/win32k rewrite attempt/inc_w32k/ntuser.h
Deleted: branches/win32k rewrite attempt/inc_w32k/win32.h

Modified: branches/win32k rewrite attempt/inc_w32k/misc.h
--- branches/win32k rewrite attempt/inc_w32k/misc.h	2005-08-10 19:19:13 UTC (rev 17265)
+++ branches/win32k rewrite attempt/inc_w32k/misc.h	2005-08-10 19:52:19 UTC (rev 17266)
@@ -6,8 +6,5 @@
 #define W32PF_MANUALGUICHECK	(0x0002)
 #define W32PF_CREATEDWINORDC	(0x0004)
 
-VOID
-FASTCALL
-DestroyThreadWindows(struct _ETHREAD *Thread);
 
 #endif /* __WIN32K_MISC_H */

Modified: branches/win32k rewrite attempt/inc_w32k/ntuser.h
--- branches/win32k rewrite attempt/inc_w32k/ntuser.h	2005-08-10 19:19:13 UTC (rev 17265)
+++ branches/win32k rewrite attempt/inc_w32k/ntuser.h	2005-08-10 19:52:19 UTC (rev 17266)
@@ -1,8 +1,6 @@
 #ifndef __WIN32K_NTUSER_H
 #define __WIN32K_NTUSER_H
 
-//#define WM_SYSTIMER 280
-
 ULONG STDCALL
 NtUserGetSystemMetrics(ULONG Index);
 

Deleted: branches/win32k rewrite attempt/inc_w32k/win32.h
--- branches/win32k rewrite attempt/inc_w32k/win32.h	2005-08-10 19:19:13 UTC (rev 17265)
+++ branches/win32k rewrite attempt/inc_w32k/win32.h	2005-08-10 19:52:19 UTC (rev 17266)
@@ -1,43 +0,0 @@
-#ifndef __INCLUDE_NAPI_WIN32_H
-#define __INCLUDE_NAPI_WIN32_H
-
-#include <pshpack1.h>
-
-typedef struct _W32THREAD
-{
-  PVOID MessageQueue;
-  FAST_MUTEX WindowListLock;
-  LIST_ENTRY WindowListHead;
-  LIST_ENTRY W32CallbackListHead;
-  struct _KBDTABLES* KeyboardLayout;
-  struct _DESKTOP_OBJECT* Desktop;
-  HANDLE hDesktop;
-  DWORD MessagePumpHookValue;
-  BOOLEAN IsExiting;
-} W32THREAD, *PW32THREAD;
-
-#include <poppack.h>
-
-
-typedef struct _W32PROCESS
-{
-  FAST_MUTEX ClassListLock;
-  LIST_ENTRY ClassListHead;
-  FAST_MUTEX MenuListLock;
-  LIST_ENTRY MenuListHead;
-  FAST_MUTEX PrivateFontListLock;
-  LIST_ENTRY PrivateFontListHead;
-  FAST_MUTEX DriverObjListLock;
-  LIST_ENTRY DriverObjListHead;
-  struct _KBDTABLES* KeyboardLayout;
-  ULONG Flags;
-  LONG GDIObjects;
-  LONG UserObjects;
-} W32PROCESS, *PW32PROCESS;
-
-PW32THREAD STDCALL
-PsGetWin32Thread(VOID);
-PW32PROCESS STDCALL
-PsGetWin32Process(VOID);
-
-#endif /* __INCLUDE_NAPI_WIN32_H */