windows-nt/Source/XPSP1/NT/ds/security/gina/snapins/gptext/ipsecext.h
2020-09-26 16:20:57 +08:00

44 lines
653 B
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.

HRESULT
CreateChildPath(
LPWSTR pszParentPath,
LPWSTR pszChildComponent,
BSTR * ppszChildPath
);
HRESULT
RetrieveIPSECPolicyFromDS(
PGROUP_POLICY_OBJECT pGPOInfo,
LPWSTR pszIPSecPolicy,
LPWSTR pszIPSecPolicyName,
LPWSTR pszIPSecPolicyDescription
);
DWORD
DeleteIPSECPolicyFromRegistry(
);
DWORD
WriteIPSECPolicyToRegistry(
LPWSTR pszIPSecPolicyPath,
LPWSTR pszIPSecPolicyName,
LPWSTR pszIPSecPolicyDescription
);
HRESULT
RegisterIPSEC(void);
HRESULT
UnregisterIPSEC(void);
VOID
PingPolicyAgent(
);
#define BAIL_ON_FAILURE(hr) \
if (FAILED(hr)) { \
goto error; \
}