windows-nt/Source/XPSP1/NT/net/layer2svc/wastore/regstore.h
2020-09-26 16:20:57 +08:00

57 lines
1.6 KiB
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

DWORD
OpenRegistryWIRELESSRootKey(
LPWSTR pszServerName,
LPWSTR pszWirelessRegRootContainer,
HKEY * phRegistryKey
);
DWORD
ReadPolicyObjectFromRegistry(
HKEY hRegistryKey,
LPWSTR pszPolicyDN,
LPWSTR pszWirelessRegRootContainer,
PWIRELESS_POLICY_OBJECT * ppWirelessPolicyObject
);
DWORD
UnMarshallRegistryPolicyObject(
HKEY hRegistryKey,
LPWSTR pszWirelessRegRootContainer,
LPWSTR pszWirelessPolicyDN,
DWORD dwNameType,
PWIRELESS_POLICY_OBJECT * ppWirelessPolicyObject
);
void
FreeWirelessPolicyObject(
PWIRELESS_POLICY_OBJECT pWirelessPolicyObject
);
void
FreeWirelessPolicyObjects(
PWIRELESS_POLICY_OBJECT * ppWirelessPolicyObjects,
DWORD dwNumPolicyObjects
);
DWORD
RegstoreQueryValue(
HKEY hRegKey,
LPWSTR pszValueName,
DWORD dwType,
LPBYTE * ppValueData,
LPDWORD pdwSize
);
#define REG_RELATIVE_NAME 0
#define REG_FULLY_QUALIFIED_NAME 1
VOID
FlushRegSaveKey(
HKEY hRegistryKey
);