[PSDK][XDK] Update some definitions

This commit is contained in:
Timo Kreuzer 2025-07-25 14:44:24 +03:00
parent 05dc65bd17
commit e195303889
3 changed files with 70 additions and 7 deletions

View file

@ -1139,6 +1139,15 @@ typedef enum _COMPUTER_NAME_FORMAT {
} COMPUTER_NAME_FORMAT;
#endif /* (_WIN32_WINNT >= 0x0500) */
typedef enum _DEP_SYSTEM_POLICY_TYPE
{
DEPPolicyAlwaysOff = 0,
DEPPolicyAlwaysOn,
DEPPolicyOptIn,
DEPPolicyOptOut,
DEPTotalPolicyCount
} DEP_SYSTEM_POLICY_TYPE;
#if (_WIN32_WINNT >= 0x0600)
typedef RTL_SRWLOCK SRWLOCK, *PSRWLOCK;
typedef RTL_CONDITION_VARIABLE CONDITION_VARIABLE, *PCONDITION_VARIABLE;