windows-nt/Source/XPSP1/NT/ds/security/gina/snapins/gptext/ipsecext.h

44 lines
653 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
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; \
}