Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
e99612c4
Commit
e99612c4
authored
Sep 21, 2010
by
Austin English
Committed by
Alexandre Julliard
Sep 22, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add a stub for GetSystemDEPPolicy.
parent
7bc0484c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
0 deletions
+17
-0
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-0
process.c
dlls/kernel32/process.c
+9
-0
winbase.h
include/winbase.h
+7
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
e99612c4
...
...
@@ -624,6 +624,7 @@
@ stdcall GetSystemDefaultLCID()
@ stdcall GetSystemDefaultLangID()
@ stdcall GetSystemDefaultUILanguage()
@ stdcall GetSystemDEPPolicy()
@ stdcall GetSystemDirectoryA(ptr long)
@ stdcall GetSystemDirectoryW(ptr long)
@ stdcall GetSystemInfo(ptr)
...
...
dlls/kernel32/process.c
View file @
e99612c4
...
...
@@ -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
;
}
include/winbase.h
View file @
e99612c4
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment