From: Louis Lenders xerox.xerox2000x@gmail.com
https://bugs.winehq.org/show_bug.cgi?id=55501 --- dlls/wldp/wldp.c | 13 +++++++++++++ 1 file changed, 13 insertions(+)
diff --git a/dlls/wldp/wldp.c b/dlls/wldp/wldp.c index 64c0c58aae8..ffd9b6084c7 100644 --- a/dlls/wldp/wldp.c +++ b/dlls/wldp/wldp.c @@ -22,6 +22,8 @@ #include "windef.h" #include "winbase.h"
+#include "wldp.h" + #include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(wldp); @@ -36,3 +38,14 @@ HRESULT WINAPI WldpIsDynamicCodePolicyEnabled(BOOL *is_enabled) *is_enabled = FALSE; return S_OK; } + +/*********************************************************************** + * WldpGetLockdownPolicy (wldp.@) + */ +HRESULT WINAPI WldpGetLockdownPolicy(WLDP_HOST_INFORMATION *info, DWORD *state, DWORD flags) +{ + FIXME("%p %p %lu\n", info, state, flags); + + *state = 0; + return S_OK; +}