mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 22:20:26 +00:00
kernel32: Add a stub for GetSystemDEPPolicy.
This commit is contained in:
parent
7bc0484c89
commit
e99612c4c8
@ -624,6 +624,7 @@
|
||||
@ stdcall GetSystemDefaultLCID()
|
||||
@ stdcall GetSystemDefaultLangID()
|
||||
@ stdcall GetSystemDefaultUILanguage()
|
||||
@ stdcall GetSystemDEPPolicy()
|
||||
@ stdcall GetSystemDirectoryA(ptr long)
|
||||
@ stdcall GetSystemDirectoryW(ptr long)
|
||||
@ stdcall GetSystemInfo(ptr)
|
||||
|
@ -3385,3 +3385,12 @@ DWORD WINAPI WTSGetActiveConsoleSessionId(void)
|
||||
FIXME("stub\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* GetSystemDEPPolicy (KERNEL32.@)
|
||||
*/
|
||||
DEP_SYSTEM_POLICY_TYPE WINAPI GetSystemDEPPolicy(void)
|
||||
{
|
||||
FIXME("stub\n");
|
||||
return OptIn;
|
||||
}
|
||||
|
@ -1234,6 +1234,13 @@ typedef struct tagHW_PROFILE_INFOW {
|
||||
DECL_WINELIB_TYPE_AW(HW_PROFILE_INFO)
|
||||
DECL_WINELIB_TYPE_AW(LPHW_PROFILE_INFO)
|
||||
|
||||
typedef enum _DEP_SYSTEM_POLICY_TYPE {
|
||||
AlwaysOff = 0,
|
||||
AlwaysOn = 1,
|
||||
OptIn = 2,
|
||||
OptOut = 3
|
||||
} DEP_SYSTEM_POLICY_TYPE;
|
||||
|
||||
/* Event Logging */
|
||||
|
||||
#define EVENTLOG_FULL_INFO 0
|
||||
|
Loading…
Reference in New Issue
Block a user