Ignore:
Timestamp:
Dec 3, 2001, 1:14:17 PM (24 years ago)
Author:
sandervl
Message:

header updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/winconst.h

    r7204 r7533  
    18751875#define SEM_NOOPENFILEERRORBOX_W      0x8000
    18761876
     1877
     1878#define THREAD_BASE_PRIORITY_LOWRT_W      15
     1879#define THREAD_BASE_PRIORITY_MAX_W        2
     1880#define THREAD_BASE_PRIORITY_MIN_W       -2
     1881#define THREAD_BASE_PRIORITY_IDLE_W      -15
     1882
     1883#define THREAD_PRIORITY_LOWEST_W          THREAD_BASE_PRIORITY_MIN_W
     1884#define THREAD_PRIORITY_BELOW_NORMAL_W    (THREAD_PRIORITY_LOWEST_W+1)
     1885#define THREAD_PRIORITY_NORMAL_W          0
     1886#define THREAD_PRIORITY_HIGHEST_W         THREAD_BASE_PRIORITY_MAX_W
     1887#define THREAD_PRIORITY_ABOVE_NORMAL_W    (THREAD_PRIORITY_HIGHEST_W-1)
     1888#define THREAD_PRIORITY_ERROR_RETURN_W    (0x7fffffff)
     1889#define THREAD_PRIORITY_TIME_CRITICAL_W   THREAD_BASE_PRIORITY_LOWRT_W
     1890#define THREAD_PRIORITY_IDLE_W            THREAD_BASE_PRIORITY_IDLE_W
     1891
     1892/* CreateProcess: dwCreationFlag values
     1893 */
     1894#define DEBUG_PROCESS_W               0x00000001
     1895#define DEBUG_ONLY_THIS_PROCESS_W     0x00000002
     1896#define CREATE_SUSPENDED_W            0x00000004
     1897#define DETACHED_PROCESS_W            0x00000008
     1898#define CREATE_NEW_CONSOLE_W          0x00000010
     1899#define NORMAL_PRIORITY_CLASS_W       0x00000020
     1900#define IDLE_PRIORITY_CLASS_W         0x00000040
     1901#define HIGH_PRIORITY_CLASS_W         0x00000080
     1902#define REALTIME_PRIORITY_CLASS_W     0x00000100
     1903#define CREATE_NEW_PROCESS_GROUP_W    0x00000200
     1904#define CREATE_UNICODE_ENVIRONMENT_W  0x00000400
     1905#define CREATE_SEPARATE_WOW_VDM_W     0x00000800
     1906#define CREATE_SHARED_WOW_VDM_W       0x00001000
     1907#define CREATE_DEFAULT_ERROR_MODE_W   0x04000000
     1908#define CREATE_NO_WINDOW_W            0x08000000
     1909#define PROFILE_USER_W                0x10000000
     1910#define PROFILE_KERNEL_W              0x20000000
     1911#define PROFILE_SERVER_W              0x40000000
     1912
    18771913#endif //__WINCONST_H__
Note: See TracChangeset for help on using the changeset viewer.