WintrustGetRegPolicyFlags function (wintrust.h)

The WintrustGetRegPolicyFlags function retrieves policy flags for a policy provider.

Note  This function has no associated import library. You must use the LoadLibrary and GetProcAddress functions to dynamically link to Wintrust.dll.
 

Syntax

void WintrustGetRegPolicyFlags(
  [out] DWORD *pdwPolicyFlags
);

Parameters

[out] pdwPolicyFlags

This parameter can be a bitwise combination of one or more of the following values.

Value Meaning
WTPF_TRUSTTEST
Trust any test certificate.
WTPF_TESTCANBEVALID
Check any test certificate for validity.
WTPF_IGNOREEXPIRATION
Use expiration date.
WTPF_IGNOREREVOKATION
Do revocation check.
WTPF_OFFLINEOK_IND
If the source is offline, trust any individual certificates.
WTPF_OFFLINEOK_COM
If the source is offline, trust any commercial certificates.
WTPF_OFFLINEOKNBU_IND
If the source is offline, trust any individual certificates. Do not use the user interface (UI).
WTPF_OFFLINEOKNBU_COM
If the source is offline, trust any commercial certificates. Do not use the checking UI.
WTPF_VERIFY_V1_OFF
Turn off verification of version 1.0 certificates.
WTPF_IGNOREREVOCATIONONTS
Ignore time stamp revocation checks.
WTPF_ALLOWONLYPERTRUST
Allow only items in personal trust database.

Return value

None

Requirements

Requirement Value
Minimum supported client Windows XP [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Target Platform Windows
Header wintrust.h
DLL Wintrust.dll

See also

WintrustSetRegPolicyFlags