kernel32: Add a stub for GetSystemDEPPolicy.
This commit is contained in:
parent
7bc0484c89
commit
e99612c4c8
|
@ -624,6 +624,7 @@
|
||||||
@ stdcall GetSystemDefaultLCID()
|
@ stdcall GetSystemDefaultLCID()
|
||||||
@ stdcall GetSystemDefaultLangID()
|
@ stdcall GetSystemDefaultLangID()
|
||||||
@ stdcall GetSystemDefaultUILanguage()
|
@ stdcall GetSystemDefaultUILanguage()
|
||||||
|
@ stdcall GetSystemDEPPolicy()
|
||||||
@ stdcall GetSystemDirectoryA(ptr long)
|
@ stdcall GetSystemDirectoryA(ptr long)
|
||||||
@ stdcall GetSystemDirectoryW(ptr long)
|
@ stdcall GetSystemDirectoryW(ptr long)
|
||||||
@ stdcall GetSystemInfo(ptr)
|
@ stdcall GetSystemInfo(ptr)
|
||||||
|
|
|
@ -3385,3 +3385,12 @@ DWORD WINAPI WTSGetActiveConsoleSessionId(void)
|
||||||
FIXME("stub\n");
|
FIXME("stub\n");
|
||||||
return 0;
|
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(HW_PROFILE_INFO)
|
||||||
DECL_WINELIB_TYPE_AW(LPHW_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 */
|
/* Event Logging */
|
||||||
|
|
||||||
#define EVENTLOG_FULL_INFO 0
|
#define EVENTLOG_FULL_INFO 0
|
||||||
|
|
Loading…
Reference in New Issue