include: Add STORAGE_HOTPLUG_INFO structure.
[wine.git] / dlls / wldp / wldp.c
blob25c85c68304b92f10d8f26db6f0be83ed8a02d66
1 /*
2 * Copyright 2023 Nikolay Sivov for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include <stdarg.h>
20 #include <stdlib.h>
22 #include "windef.h"
23 #include "winbase.h"
25 #include "wldp.h"
27 #include "wine/debug.h"
29 WINE_DEFAULT_DEBUG_CHANNEL(wldp);
31 /***********************************************************************
32 * WldpIsDynamicCodePolicyEnabled (wldp.@)
34 HRESULT WINAPI WldpIsDynamicCodePolicyEnabled(BOOL *is_enabled)
36 FIXME("%p\n", is_enabled);
38 *is_enabled = FALSE;
39 return S_OK;
42 /***********************************************************************
43 * WldpGetLockdownPolicy (wldp.@)
45 HRESULT WINAPI WldpGetLockdownPolicy(WLDP_HOST_INFORMATION *info, DWORD *state, DWORD flags)
47 FIXME("%p %p %lx\n", info, state, flags);
49 *state = WLDP_LOCKDOWN_DEFINED_FLAG;
50 if (!info) return HRESULT_FROM_NT(0);
51 return S_OK;
54 /***********************************************************************
55 * WldpQueryWindowsLockdownMode (wldp.@)
57 HRESULT WINAPI WldpQueryWindowsLockdownMode(WLDP_WINDOWS_LOCKDOWN_MODE *lockdown_mode)
59 FIXME("%p\n", lockdown_mode);
61 *lockdown_mode = WLDP_WINDOWS_LOCKDOWN_MODE_UNLOCKED;
62 return S_OK;