Commit e99612c4 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

kernel32: Add a stub for GetSystemDEPPolicy.

parent 7bc0484c
...@@ -624,6 +624,7 @@ ...@@ -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) ...@@ -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 { ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment