The MinGW.org Windows System Libraries
リビジョン | a2153bcb68a3f72298c1428f5e9399290b66490f (tree) |
---|---|
日時 | 2011-12-22 23:31:46 |
作者 | Corinna Vinschen <corinna@vins...> |
コミッター | Corinna Vinschen |
Replace more incorrectly named manifest constants.
@@ -1,5 +1,14 @@ | ||
1 | 1 | 2011-12-22 Corinna Vinschen <corinna@vinschen.de> |
2 | 2 | |
3 | + Replace more incorrectly named manifest constants. | |
4 | + | |
5 | + * include/winnt.h (JOB_OBJECT_LIMIT_BREAKAWAY_OK) | |
6 | + (JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK): Define; make aliases for... | |
7 | + (JOB_OBJECT_BREAKAWAY_OK, JOB_OBJECT_SILENT_BREAKAWAY): ...these old | |
8 | + definitions respectively; retain for backward compatibility only. | |
9 | + | |
10 | +2011-12-22 Corinna Vinschen <corinna@vinschen.de> | |
11 | + | |
3 | 12 | Add missing PROCESS_QUERY_LIMITED_INFORMATION. |
4 | 13 | |
5 | 14 | * include/winnt.h (PROCESS_QUERY_LIMITED_INFORMATION): Define it. |
@@ -3503,8 +3503,12 @@ typedef union _FILE_SEGMENT_ELEMENT { | ||
3503 | 3503 | #define JOB_OBJECT_LIMIT_PROCESS_MEMORY 0x0100 |
3504 | 3504 | #define JOB_OBJECT_LIMIT_JOB_MEMORY 0x0200 |
3505 | 3505 | #define JOB_OBJECT_LIMIT_DIE_ON_UNHANDLED_EXCEPTION 0x0400 |
3506 | -#define JOB_OBJECT_BREAKAWAY_OK 0x0800 | |
3507 | -#define JOB_OBJECT_SILENT_BREAKAWAY 0x1000 | |
3506 | +#define JOB_OBJECT_LIMIT_BREAKAWAY_OK 0x0800 | |
3507 | +#define JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK 0x1000 | |
3508 | + | |
3509 | +/* Wrong definitions, but keep for backward compatibility. */ | |
3510 | +#define JOB_OBJECT_BREAKAWAY_OK JOB_OBJECT_LIMIT_BREAKAWAY_OK | |
3511 | +#define JOB_OBJECT_SILENT_BREAKAWAY JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK | |
3508 | 3512 | |
3509 | 3513 | /* JOBOBJECT_BASIC_UI_RESTRICTIONS.UIRestrictionsClass constants */ |
3510 | 3514 | #define JOB_OBJECT_UILIMIT_HANDLES 0x0001 |