📄 winnt.h
字号:
#define FILE_FILE_COMPRESSION 0x00000010#define FILE_VOLUME_QUOTAS 0x00000020#define FILE_SUPPORTS_SPARSE_FILES 0x00000040#define FILE_SUPPORTS_REPARSE_POINTS 0x00000080#define FILE_SUPPORTS_REMOTE_STORAGE 0x00000100#define FS_LFN_APIS 0x00004000#define FILE_VOLUME_IS_COMPRESSED 0x00008000#define FILE_SUPPORTS_OBJECT_IDS 0x00010000#define FILE_SUPPORTS_ENCRYPTION 0x00020000#define FILE_NAMED_STREAMS 0x00040000#define FILE_READ_ONLY_VOLUME 0x00080000#define IO_COMPLETION_QUERY_STATE 0x0001#define IO_COMPLETION_MODIFY_STATE 0x0002#define IO_COMPLETION_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x3)/* end ntifs.h *//* also in ddk/winddk.h */#define DUPLICATE_CLOSE_SOURCE 0x00000001#define DUPLICATE_SAME_ACCESS 0x00000002#define DUPLICATE_SAME_ATTRIBUTES 0x00000004/* end winddk.k */#define MAILSLOT_NO_MESSAGE ((DWORD)-1)#define MAILSLOT_WAIT_FOREVER ((DWORD)-1)#define PROCESS_TERMINATE 1#define PROCESS_CREATE_THREAD 2#define PROCESS_SET_SESSIONID 4#define PROCESS_VM_OPERATION 8#define PROCESS_VM_READ 16#define PROCESS_VM_WRITE 32#define PROCESS_DUP_HANDLE 64#define PROCESS_CREATE_PROCESS 128#define PROCESS_SET_QUOTA 256#define PROCESS_SET_INFORMATION 512#define PROCESS_QUERY_INFORMATION 1024#define PROCESS_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0xFFF)#define THREAD_TERMINATE 1#define THREAD_SUSPEND_RESUME 2#define THREAD_GET_CONTEXT 8#define THREAD_SET_CONTEXT 16#define THREAD_SET_INFORMATION 32#define THREAD_QUERY_INFORMATION 64#define THREAD_SET_THREAD_TOKEN 128#define THREAD_IMPERSONATE 256#define THREAD_DIRECT_IMPERSONATION 0x200#define THREAD_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x3FF)#define THREAD_BASE_PRIORITY_LOWRT 15#define THREAD_BASE_PRIORITY_MAX 2#define THREAD_BASE_PRIORITY_MIN (-2)#define THREAD_BASE_PRIORITY_IDLE (-15)#define EXCEPTION_NONCONTINUABLE 1#define EXCEPTION_MAXIMUM_PARAMETERS 15#define MUTANT_QUERY_STATE 0x0001#define MUTANT_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|MUTANT_QUERY_STATE)#define TIMER_QUERY_STATE 0x0001#define TIMER_MODIFY_STATE 0x0002#define TIMER_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|TIMER_QUERY_STATE|TIMER_MODIFY_STATE)/* * To prevent gcc compiler warnings, bracket these defines when initialising * a SID_IDENTIFIER_AUTHORITY, eg. * SID_IDENTIFIER_AUTHORITY aNullSidAuthority = {SECURITY_NULL_SID_AUTHORITY}; */#define SECURITY_NULL_SID_AUTHORITY {0,0,0,0,0,0}#define SECURITY_WORLD_SID_AUTHORITY {0,0,0,0,0,1}#define SECURITY_LOCAL_SID_AUTHORITY {0,0,0,0,0,2}#define SECURITY_CREATOR_SID_AUTHORITY {0,0,0,0,0,3}#define SECURITY_NON_UNIQUE_AUTHORITY {0,0,0,0,0,4}#define SECURITY_NT_AUTHORITY {0,0,0,0,0,5}#define SECURITY_NULL_RID 0#define SECURITY_WORLD_RID (0x00000000L)#define SECURITY_LOCAL_RID 0#define SECURITY_CREATOR_OWNER_RID 0#define SECURITY_CREATOR_GROUP_RID 1#define SECURITY_DIALUP_RID 1#define SECURITY_NETWORK_RID 2#define SECURITY_BATCH_RID 3#define SECURITY_INTERACTIVE_RID 4#define SECURITY_LOGON_IDS_RID 5#define SECURITY_SERVICE_RID 6#define SECURITY_LOCAL_SYSTEM_RID 18#define SECURITY_BUILTIN_DOMAIN_RID 32#define SECURITY_PRINCIPAL_SELF_RID 10#define SECURITY_CREATOR_OWNER_SERVER_RID 0x2#define SECURITY_CREATOR_GROUP_SERVER_RID 0x3#define SECURITY_LOGON_IDS_RID_COUNT 0x3#define SECURITY_ANONYMOUS_LOGON_RID 0x7#define SECURITY_PROXY_RID 0x8#define SECURITY_ENTERPRISE_CONTROLLERS_RID 0x9#define SECURITY_SERVER_LOGON_RID SECURITY_ENTERPRISE_CONTROLLERS_RID#define SECURITY_AUTHENTICATED_USER_RID 0xB#define SECURITY_RESTRICTED_CODE_RID 0xC#define SECURITY_NT_NON_UNIQUE_RID 0x15#define SID_REVISION 1#define DOMAIN_USER_RID_ADMIN 0x1F4L#define DOMAIN_USER_RID_GUEST 0x1F5L#define DOMAIN_GROUP_RID_ADMINS 0x200L#define DOMAIN_GROUP_RID_USERS 0x201L#define DOMAIN_ALIAS_RID_ADMINS 0x220L#define DOMAIN_ALIAS_RID_USERS 0x221L#define DOMAIN_ALIAS_RID_GUESTS 0x222L#define DOMAIN_ALIAS_RID_POWER_USERS 0x223L#define DOMAIN_ALIAS_RID_ACCOUNT_OPS 0x224L#define DOMAIN_ALIAS_RID_SYSTEM_OPS 0x225L#define DOMAIN_ALIAS_RID_PRINT_OPS 0x226L#define DOMAIN_ALIAS_RID_BACKUP_OPS 0x227L#define DOMAIN_ALIAS_RID_REPLICATOR 0x228L#define SE_CREATE_TOKEN_NAME TEXT("SeCreateTokenPrivilege")#define SE_ASSIGNPRIMARYTOKEN_NAME TEXT("SeAssignPrimaryTokenPrivilege")#define SE_LOCK_MEMORY_NAME TEXT("SeLockMemoryPrivilege")#define SE_INCREASE_QUOTA_NAME TEXT("SeIncreaseQuotaPrivilege")#define SE_UNSOLICITED_INPUT_NAME TEXT("SeUnsolicitedInputPrivilege")#define SE_MACHINE_ACCOUNT_NAME TEXT("SeMachineAccountPrivilege")#define SE_TCB_NAME TEXT("SeTcbPrivilege")#define SE_SECURITY_NAME TEXT("SeSecurityPrivilege")#define SE_TAKE_OWNERSHIP_NAME TEXT("SeTakeOwnershipPrivilege")#define SE_LOAD_DRIVER_NAME TEXT("SeLoadDriverPrivilege")#define SE_SYSTEM_PROFILE_NAME TEXT("SeSystemProfilePrivilege")#define SE_SYSTEMTIME_NAME TEXT("SeSystemtimePrivilege")#define SE_PROF_SINGLE_PROCESS_NAME TEXT("SeProfileSingleProcessPrivilege")#define SE_INC_BASE_PRIORITY_NAME TEXT("SeIncreaseBasePriorityPrivilege")#define SE_CREATE_PAGEFILE_NAME TEXT("SeCreatePagefilePrivilege")#define SE_CREATE_PERMANENT_NAME TEXT("SeCreatePermanentPrivilege")#define SE_BACKUP_NAME TEXT("SeBackupPrivilege")#define SE_RESTORE_NAME TEXT("SeRestorePrivilege")#define SE_SHUTDOWN_NAME TEXT("SeShutdownPrivilege")#define SE_DEBUG_NAME TEXT("SeDebugPrivilege")#define SE_AUDIT_NAME TEXT("SeAuditPrivilege")#define SE_SYSTEM_ENVIRONMENT_NAME TEXT("SeSystemEnvironmentPrivilege")#define SE_CHANGE_NOTIFY_NAME TEXT("SeChangeNotifyPrivilege")#define SE_REMOTE_SHUTDOWN_NAME TEXT("SeRemoteShutdownPrivilege")#define SE_CREATE_GLOBAL_NAME TEXT("SeCreateGlobalPrivilege")#define SE_UNDOCK_NAME TEXT("SeUndockPrivilege")#define SE_MANAGE_VOLUME_NAME TEXT("SeManageVolumePrivilege")#define SE_IMPERSONATE_NAME TEXT("SeImpersonatePrivilege")#define SE_ENABLE_DELEGATION_NAME TEXT("SeEnableDelegationPrivilege")#define SE_SYNC_AGENT_NAME TEXT("SeSyncAgentPrivilege")#define SE_TRUSTED_CREDMAN_ACCESS_NAME TEXT("SeTrustedCredManAccessPrivilege")#define SE_RELABEL_NAME TEXT("SeRelabelPrivilege")#define SE_INCREASE_WORKING_SET_NAME TEXT("SeIncreaseWorkingSetPrivilege")#define SE_TIME_ZONE_NAME TEXT("SeTimeZonePrivilege")#define SE_CREATE_SYMBOLIC_LINK_NAME TEXT("SeCreateSymbolicLinkPrivilege")#define SE_GROUP_MANDATORY 1#define SE_GROUP_ENABLED_BY_DEFAULT 2#define SE_GROUP_ENABLED 4#define SE_GROUP_OWNER 8#define SE_GROUP_USE_FOR_DENY_ONLY 16#define SE_GROUP_LOGON_ID 3221225472U#define SE_GROUP_RESOURCE 536870912#define LANG_NEUTRAL 0x00#define LANG_ARABIC 0x01#define LANG_BULGARIAN 0x02#define LANG_CATALAN 0x03#define LANG_CHINESE 0x04#define LANG_CZECH 0x05#define LANG_DANISH 0x06#define LANG_GERMAN 0x07#define LANG_GREEK 0x08#define LANG_ENGLISH 0x09#define LANG_SPANISH 0x0a#define LANG_FINNISH 0x0b#define LANG_FRENCH 0x0c#define LANG_HEBREW 0x0d#define LANG_HUNGARIAN 0x0e#define LANG_ICELANDIC 0x0f#define LANG_ITALIAN 0x10#define LANG_JAPANESE 0x11#define LANG_KOREAN 0x12#define LANG_DUTCH 0x13#define LANG_NORWEGIAN 0x14#define LANG_POLISH 0x15#define LANG_PORTUGUESE 0x16#define LANG_ROMANIAN 0x18#define LANG_RUSSIAN 0x19#define LANG_CROATIAN 0x1a#define LANG_SERBIAN 0x1a#define LANG_SERBIAN_NEUTRAL 0x7c1a#define LANG_BOSNIAN 0x1a#define LANG_BOSNIAN_NEUTRAL 0x781a#define LANG_SLOVAK 0x1b#define LANG_ALBANIAN 0x1c#define LANG_SWEDISH 0x1d#define LANG_THAI 0x1e#define LANG_TURKISH 0x1f#define LANG_URDU 0x20#define LANG_INDONESIAN 0x21#define LANG_UKRAINIAN 0x22#define LANG_BELARUSIAN 0x23#define LANG_SLOVENIAN 0x24#define LANG_ESTONIAN 0x25#define LANG_LATVIAN 0x26#define LANG_LITHUANIAN 0x27#define LANG_PERSIAN 0x29#define LANG_FARSI LANG_PERSIAN#define LANG_VIETNAMESE 0x2a#define LANG_ARMENIAN 0x2b#define LANG_AZERI 0x2c#define LANG_BASQUE 0x2d#define LANG_LOWER_SORBIAN 0x2e#define LANG_UPPER_SORBIAN 0x2e#define LANG_MACEDONIAN 0x2f#define LANG_TSWANA 0x32#define LANG_XHOSA 0x34#define LANG_ZULU 0x35#define LANG_AFRIKAANS 0x36#define LANG_GEORGIAN 0x37#define LANG_FAEROESE 0x38#define LANG_HINDI 0x39#define LANG_MALTESE 0x3a#define LANG_SAMI 0x3b#define LANG_IRISH 0x3c#define LANG_MALAY 0x3e#define LANG_KAZAK 0x3f#define LANG_KYRGYZ 0x40#define LANG_SWAHILI 0x41#define LANG_UZBEK 0x43#define LANG_TATAR 0x44#define LANG_BENGALI 0x45#define LANG_PUNJABI 0x46#define LANG_GUJARATI 0x47#define LANG_ORIYA 0x48#define LANG_TAMIL 0x49#define LANG_TELUGU 0x4a#define LANG_KANNADA 0x4b#define LANG_MALAYALAM 0x4c#define LANG_ASSAMESE 0x4d#define LANG_MARATHI 0x4e#define LANG_SANSKRIT 0x4f#define LANG_MONGOLIAN 0x50#define LANG_TIBETAN 0x51#define LANG_WELSH 0x52#define LANG_KHMER 0x53#define LANG_LAO 0x54#define LANG_GALICIAN 0x56#define LANG_KONKANI 0x57#define LANG_MANIPURI 0x58#define LANG_SINDHI 0x59#define LANG_SYRIAC 0x5a#define LANG_SINHALESE 0x5b#define LANG_INUKTITUT 0x5d#define LANG_AMHARIC 0x5e#define LANG_TAMAZIGHT 0x5f#define LANG_KASHMIRI 0x60#define LANG_NEPALI 0x61#define LANG_FRISIAN 0x62#define LANG_PASHTO 0x63#define LANG_FILIPINO 0x64#define LANG_DIVEHI 0x65#define LANG_HAUSA 0x68#define LANG_YORUBA 0x6a#define LANG_QUECHUA 0x6b#define LANG_SOTHO 0x6c#define LANG_BASHKIR 0x6d#define LANG_LUXEMBOURGISH 0x6e#define LANG_GREENLANDIC 0x6f#define LANG_IGBO 0x70#define LANG_TIGRIGNA 0x73#define LANG_YI 0x78#define LANG_MAPUDUNGUN 0x7a#define LANG_MOHAWK 0x7c#define LANG_BRETON 0x7e#define LANG_INVARIANT 0x7f#define LANG_UIGHUR 0x80#define LANG_MAORI 0x81#define LANG_OCCITAN 0x82#define LANG_CORSICAN 0x83#define LANG_ALSATIAN 0x84#define LANG_YAKUT 0x85#define LANG_KICHE 0x86#define LANG_KINYARWANDA 0x87#define LANG_WOLOF 0x88#define LANG_DARI 0x8c#define LANG_MALAGASY 0x8d#define SUBLANG_NEUTRAL 0x00#define SUBLANG_DEFAULT 0x01#define SUBLANG_SYS_DEFAULT 0x02#define SUBLANG_CUSTOM_DEFAULT 0x03#define SUBLANG_CUSTOM_UNSPECIFIED 0x04#define SUBLANG_UI_CUSTOM_DEFAULT 0x03#define SUBLANG_AFRIKAANS_SOUTH_AFRICA 0x01#define SUBLANG_ALBANIAN_ALBANIA 0x01#define SUBLANG_ALSATIAN_FRANCE 0x01#define SUBLANG_AMHARIC_ETHIOPIA 0x01#define SUBLANG_ARABIC_SAUDI_ARABIA 0x01#define SUBLANG_ARABIC_IRAQ 0x02#define SUBLANG_ARABIC_EGYPT 0x03#define SUBLANG_ARABIC_LIBYA 0x04#define SUBLANG_ARABIC_ALGERIA 0x05#define SUBLANG_ARABIC_MOROCCO 0x06#define SUBLANG_ARABIC_TUNISIA 0x07#define SUBLANG_ARABIC_OMAN 0x08#define SUBLANG_ARABIC_YEMEN 0x09#define SUBLANG_ARABIC_SYRIA 0x0a#define SUBLANG_ARABIC_JORDAN 0x0b#define SUBLANG_ARABIC_LEBANON 0x0c#define SUBLANG_ARABIC_KUWAIT 0x0d#define SUBLANG_ARABIC_UAE 0x0e#define SUBLANG_ARABIC_BAHRAIN 0x0f#define SUBLANG_ARABIC_QATAR 0x10#define SUBLANG_ARMENIAN_ARMENIA 0x01#define SUBLANG_ASSAMESE_INDIA 0x01#define SUBLANG_AZERI_LATIN 0x01#define SUBLANG_AZERI_CYRILLIC 0x02#define SUBLANG_BASHKIR_RUSSIA 0x01#define SUBLANG_BASQUE_BASQUE 0x01#define SUBLANG_BELARUSIAN_BELARUS 0x01#define SUBLANG_BENGALI_INDIA 0x01#define SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN 0x05#define SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC 0x08#define SUBLANG_BRETON_FRANCE 0x01#define SUBLANG_BULGARIAN_BULGARIA 0x01#define SUBLANG_CATALAN_CATALAN 0x01#define SUBLANG_CHINESE_TRADITIONAL 0x01#define SUBLANG_CHINESE_SIMPLIFIED 0x02#define SUBLANG_CHINESE_HONGKONG 0x03#define SUBLANG_CHINESE_SINGAPORE 0x04#define SUBLANG_CHINESE_MACAU 0x05#define SUBLANG_CORSICAN_FRANCE 0x01#define SUBLANG_CZECH_CZECH_REPUBLIC 0x01#define SUBLANG_CROATIAN_CROATIA 0x01#define SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN 0x04#define SUBLANG_DANISH_DENMARK 0x01#define SUBLANG_DIVEHI_MALDIVES 0x01#define SUBLANG_DUTCH 0x01#define SUBLANG_DUTCH_BELGIAN 0x02#define SUBLANG_ENGLISH_US 0x01#define SUBLANG_ENGLISH_UK 0x02#define SUBLANG_ENGLISH_AUS 0x03#define SUBLANG_ENGLISH_CAN 0x04#define SUBLANG_ENGLISH_NZ 0x05#if (WINVER >= 0x0600)#define SUBLANG_ENGLISH_IRELAND 0x06#endif#define SUBLANG_ENGLISH_EIRE 0x06#define SUBLANG_ENGLISH_SOUTH_AFRICA 0x07#define SUBLANG_ENGLISH_JAMAICA 0x08#define SUBLANG_ENGLISH_CARIBBEAN 0x09#define SUBLANG_ENGLISH_BELIZE 0x0a#define SUBLANG_ENGLISH_TRINIDAD 0x0b#define SUBLANG_ENGLISH_ZIMBABWE 0x0c#define SUBLANG_ENGLISH_PHILIPPINES 0x0d#define SUBLANG_ENGLISH_INDIA 0x10#define SUBLANG_ENGLISH_MALAYSIA 0x11#define SUBLANG_ENGLISH_SINGAPORE 0x12#define SUBLANG_ESTONIAN_ESTONIA 0x01#define SUBLANG_FAEROESE_FAROE_ISLANDS 0x01#define SUBLANG_FILIPINO_PHILIPPINES 0x01#define SUBLANG_FINNISH_FINLAND 0x01#define SUBLANG_FRENCH 0x01#define SUBLANG_FRENCH_BELGIAN 0x02#define SUBLANG_FRENCH_CANADIAN 0x03#define SUBLANG_FRENCH_SWISS 0x04#define SUBLANG_FRENCH_LUXEMBOURG 0x05#define SUBLANG_FRENCH_MONACO 0x06#define SUBLANG_FRISIAN_NETHERLANDS 0x01#define SUBLANG_GALICIAN_GALICIAN 0x01#define SUBLANG_GEORGIAN_GEORGIA 0x01#define SUBLANG_GERMAN 0x01#define SUBLANG_GERMAN_SWISS 0x02#define SUBLANG_GERMAN_AUSTRIAN 0x03#define SUBLANG_GERMAN_LUXEMBOURG 0x04#define SUBLANG_GERMAN_LIECHTENSTEIN 0x05#define SUBLANG_GREEK_GREECE 0x01#define SUBLANG_GREENLANDIC_GREENLAND 0x01#define SUBLANG_GUJARATI_INDIA 0x01#define SUBLANG_HAUSA_NIGERIA 0x01#define SUBLANG_HEBREW_ISRAEL 0x01#define SUBLANG_HINDI_INDIA 0x01#define SUBLANG_HUNGARIAN_HUNGARY 0x01
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -