From: <ped...@us...> - 2007-02-26 21:15:32
|
Revision: 909 http://svn.sourceforge.net/cegcc/?rev=909&view=rev Author: pedroalves Date: 2007-02-26 13:14:23 -0800 (Mon, 26 Feb 2007) Log Message: ----------- * include/winbase.h (DETACHED_PROCESS): Hide. (CREATE_NEW_PROCESS_GROUP): Hide. (CREATE_UNICODE_ENVIRONMENT): Hide. Modified Paths: -------------- trunk/cegcc/src/w32api/ChangeLog.ce trunk/cegcc/src/w32api/include/winbase.h Modified: trunk/cegcc/src/w32api/ChangeLog.ce =================================================================== --- trunk/cegcc/src/w32api/ChangeLog.ce 2007-02-26 19:11:15 UTC (rev 908) +++ trunk/cegcc/src/w32api/ChangeLog.ce 2007-02-26 21:14:23 UTC (rev 909) @@ -1,3 +1,9 @@ +2007-02-26 Pedro Alves <ped...@po...> + + * include/winbase.h (DETACHED_PROCESS): Hide. + (CREATE_NEW_PROCESS_GROUP): Hide. + (CREATE_UNICODE_ENVIRONMENT): Hide. + 2007-02-05 Pedro Alves <ped...@po...> * libce/Makefile.in: Fix order for 'all' rule. Modified: trunk/cegcc/src/w32api/include/winbase.h =================================================================== --- trunk/cegcc/src/w32api/include/winbase.h 2007-02-26 19:11:15 UTC (rev 908) +++ trunk/cegcc/src/w32api/include/winbase.h 2007-02-26 21:14:23 UTC (rev 909) @@ -167,14 +167,18 @@ #define DEBUG_PROCESS 0x00000001 #define DEBUG_ONLY_THIS_PROCESS 0x00000002 #define CREATE_SUSPENDED 0x00000004 +#ifndef _WIN32_WCE #define DETACHED_PROCESS 0x00000008 +#endif #define CREATE_NEW_CONSOLE 0x00000010 #define NORMAL_PRIORITY_CLASS 0x00000020 #define IDLE_PRIORITY_CLASS 0x00000040 #define HIGH_PRIORITY_CLASS 0x00000080 #define REALTIME_PRIORITY_CLASS 0x00000100 +#ifndef _WIN32_WCE #define CREATE_NEW_PROCESS_GROUP 0x00000200 #define CREATE_UNICODE_ENVIRONMENT 0x00000400 +#endif #define CREATE_SEPARATE_WOW_VDM 0x00000800 #define CREATE_SHARED_WOW_VDM 0x00001000 #define CREATE_FORCEDOS 0x00002000 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |