Lines Matching defs:TrustData
2215 WINTRUST_DATA TrustData;
2216 RT_ZERO(TrustData);
2217 TrustData.cbStruct = sizeof(TrustData);
2218 TrustData.fdwRevocationChecks = WTD_REVOKE_NONE; /* Keep simple for now. */
2219 TrustData.dwStateAction = WTD_STATEACTION_VERIFY;
2220 TrustData.dwUIChoice = WTD_UI_NONE;
2221 TrustData.dwProvFlags = 0;
2223 TrustData.dwProvFlags = WTD_CACHE_ONLY_URL_RETRIEVAL;
2225 TrustData.dwProvFlags = WTD_REVOCATION_CHECK_NONE;
2226 TrustData.dwUnionChoice = WTD_CHOICE_FILE;
2227 TrustData.pFile = &FileInfo;
2229 HRESULT hrc = pfnWinVerifyTrust(NULL /*hwnd*/, &PolicyActionGuid, &TrustData);
2277 TrustData.dwStateAction = WTD_STATEACTION_CLOSE;
2279 hrc = pfnWinVerifyTrust(NULL /*hwnd*/, &PolicyActionGuid, &TrustData);
2474 WINTRUST_DATA TrustData;
2475 RT_ZERO(TrustData);
2476 TrustData.cbStruct = sizeof(TrustData);
2477 TrustData.fdwRevocationChecks = WTD_REVOKE_NONE; /* Keep simple for now. */
2478 TrustData.dwStateAction = WTD_STATEACTION_VERIFY;
2479 TrustData.dwUIChoice = WTD_UI_NONE;
2480 TrustData.dwProvFlags = 0;
2482 TrustData.dwProvFlags = WTD_CACHE_ONLY_URL_RETRIEVAL;
2484 TrustData.dwProvFlags = WTD_REVOCATION_CHECK_NONE;
2485 TrustData.dwUnionChoice = WTD_CHOICE_CATALOG;
2486 TrustData.pCatalog = &WtCatInfo;
2488 HRESULT hrc = pfnWinVerifyTrust(NULL /*hwnd*/, &s_aPolicies[iPolicy], &TrustData);
2507 TrustData.dwStateAction = WTD_STATEACTION_CLOSE;
2508 hrc = pfnWinVerifyTrust(NULL /*hwnd*/, &s_aPolicies[iPolicy], &TrustData);