Author: jimtabor
Date: Wed Aug 12 08:54:31 2009
New Revision: 42630
URL:
http://svn.reactos.org/svn/reactos?rev=42630&view=rev
Log:
- Move W32 Process flags to the proper place.
Modified:
trunk/reactos/subsystems/win32/win32k/include/misc.h
trunk/reactos/subsystems/win32/win32k/include/win32.h
Modified: trunk/reactos/subsystems/win32/win32k/include/misc.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/in…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/include/misc.h [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/include/misc.h [iso-8859-1] Wed Aug 12 08:54:31
2009
@@ -1,34 +1,5 @@
#ifndef __WIN32K_MISC_H
#define __WIN32K_MISC_H
-
-/* W32PROCESS flags */
-#define W32PF_CONSOLEAPPLICATION 0x00000001
-#define W32PF_FORCEOFFFEEDBACK 0x00000002
-#define W32PF_STARTGLASS 0x00000004
-#define W32PF_WOW 0x00000008
-#define W32PF_READSCREENACCESSGRANTED 0x00000010
-#define W32PF_INITIALIZED 0x00000020
-#define W32PF_APPSTARTING 0x00000040
-#define W32PF_WOW64 0x00000080
-#define W32PF_ALLOWFOREGROUNDACTIVATE 0x00000100
-#define W32PF_OWNDCCLEANUP 0x00000200
-#define W32PF_SHOWSTARTGLASSCALLED 0x00000400
-#define W32PF_FORCEBACKGROUNDPRIORITY 0x00000800
-#define W32PF_TERMINATED 0x00001000
-#define W32PF_CLASSESREGISTERED 0x00002000
-#define W32PF_THREADCONNECTED 0x00004000
-#define W32PF_PROCESSCONNECTED 0x00008000
-#define W32PF_WAKEWOWEXEC 0x00010000
-#define W32PF_WAITFORINPUTIDLE 0x00020000
-#define W32PF_IOWINSTA 0x00040000
-#define W32PF_CONSOLEFOREGROUND 0x00080000
-#define W32PF_OLELOADED 0x00100000
-#define W32PF_SCREENSAVER 0x00200000
-#define W32PF_IDLESCREENSAVER 0x00400000
-// ReactOS
-#define W32PF_NOWINDOWGHOSTING (0x01000000)
-#define W32PF_MANUALGUICHECK (0x02000000)
-#define W32PF_CREATEDWINORDC (0x04000000)
typedef struct INTENG_ENTER_LEAVE_TAG
{
Modified: trunk/reactos/subsystems/win32/win32k/include/win32.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/in…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/include/win32.h [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/include/win32.h [iso-8859-1] Wed Aug 12 08:54:31
2009
@@ -1,5 +1,35 @@
#ifndef __INCLUDE_NAPI_WIN32_H
#define __INCLUDE_NAPI_WIN32_H
+
+/* W32PROCESS flags */
+#define W32PF_CONSOLEAPPLICATION 0x00000001
+#define W32PF_FORCEOFFFEEDBACK 0x00000002
+#define W32PF_STARTGLASS 0x00000004
+#define W32PF_WOW 0x00000008
+#define W32PF_READSCREENACCESSGRANTED 0x00000010
+#define W32PF_INITIALIZED 0x00000020
+#define W32PF_APPSTARTING 0x00000040
+#define W32PF_WOW64 0x00000080
+#define W32PF_ALLOWFOREGROUNDACTIVATE 0x00000100
+#define W32PF_OWNDCCLEANUP 0x00000200
+#define W32PF_SHOWSTARTGLASSCALLED 0x00000400
+#define W32PF_FORCEBACKGROUNDPRIORITY 0x00000800
+#define W32PF_TERMINATED 0x00001000
+#define W32PF_CLASSESREGISTERED 0x00002000
+#define W32PF_THREADCONNECTED 0x00004000
+#define W32PF_PROCESSCONNECTED 0x00008000
+#define W32PF_WAKEWOWEXEC 0x00010000
+#define W32PF_WAITFORINPUTIDLE 0x00020000
+#define W32PF_IOWINSTA 0x00040000
+#define W32PF_CONSOLEFOREGROUND 0x00080000
+#define W32PF_OLELOADED 0x00100000
+#define W32PF_SCREENSAVER 0x00200000
+#define W32PF_IDLESCREENSAVER 0x00400000
+#define W32PF_ICONTITLEREGISTERED 0x10000000
+// ReactOS
+#define W32PF_NOWINDOWGHOSTING (0x01000000)
+#define W32PF_MANUALGUICHECK (0x02000000)
+#define W32PF_CREATEDWINORDC (0x04000000)
extern BOOL ClientPfnInit;
extern HINSTANCE hModClient;
@@ -95,8 +125,10 @@
{
W32PROCESS;
- PCLS pclsPrivateList;
- PCLS pclsPublicList;
+ PCLS pclsPrivateList;
+ PCLS pclsPublicList;
+
+ DWORD dwRegisteredClasses;
/* ReactOS */
LIST_ENTRY ClassList;
LIST_ENTRY MenuListHead;