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
6dae924d
Commit
6dae924d
authored
Sep 04, 2023
by
Helix Graziani
Committed by
Alexandre Julliard
Sep 08, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wldp: Add WldpQueryWindowsLockdownMode stub.
parent
5e68fa63
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
1 deletion
+20
-1
wldp.c
dlls/wldp/wldp.c
+11
-0
wldp.spec
dlls/wldp/wldp.spec
+1
-1
wldp.h
include/wldp.h
+8
-0
No files found.
dlls/wldp/wldp.c
View file @
6dae924d
...
...
@@ -49,3 +49,14 @@ HRESULT WINAPI WldpGetLockdownPolicy(WLDP_HOST_INFORMATION *info, DWORD *state,
*
state
=
0
;
return
S_OK
;
}
/***********************************************************************
* WldpQueryWindowsLockdownMode (wldp.@)
*/
HRESULT
WINAPI
WldpQueryWindowsLockdownMode
(
WLDP_WINDOWS_LOCKDOWN_MODE
*
lockdown_mode
)
{
FIXME
(
"%p
\n
"
,
lockdown_mode
);
*
lockdown_mode
=
WLDP_WINDOWS_LOCKDOWN_MODE_UNLOCKED
;
return
S_OK
;
}
dlls/wldp/wldp.spec
View file @
6dae924d
...
...
@@ -4,7 +4,7 @@
@ stub WldpQueryPolicySettingEnabled2
@ stub WldpQueryPolicySettingEnabled
@ stub WldpQueryPolicySettingEnabledInternal
@ st
ub WldpQueryWindowsLockdownMode
@ st
dcall WldpQueryWindowsLockdownMode(ptr)
@ stub WldpQueryWindowsLockdownRestriction
@ stub WldpResetProductionConfiguration
@ stub WldpResetWcosProductionConfiguration
...
...
include/wldp.h
View file @
6dae924d
...
...
@@ -32,6 +32,14 @@ typedef enum WLDP_HOST_ID
WLDP_HOST_ID_MAX
}
WLDP_HOST_ID
;
typedef
enum
_WLDP_WINDOWS_LOCKDOWN_MODE
{
WLDP_WINDOWS_LOCKDOWN_MODE_UNLOCKED
,
WLDP_WINDOWS_LOCKDOWN_MODE_TRIAL
,
WLDP_WINDOWS_LOCKDOWN_MODE_LOCKED
,
WLDP_WINDOWS_LOCKDOWN_MODE_MAX
}
WLDP_WINDOWS_LOCKDOWN_MODE
,
*
PWLDP_WINDOWS_LOCKDOWN_MODE
;
typedef
struct
WLDP_HOST_INFORMATION
{
DWORD
dwRevision
;
...
...
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