Home
last modified time | relevance | path

Searched refs:hstore (Results 1 – 2 of 2) sorted by relevance

/reactos/dll/win32/crypt32/
H A Dstore.c1396 HCERTSTORE hstore; in CertRegisterSystemStore() local
1406 hstore = CertOpenStore(CERT_STORE_PROV_SYSTEM_REGISTRY_W, 0, 0, dwFlags, pvSystemStore); in CertRegisterSystemStore()
1407 if (hstore) in CertRegisterSystemStore()
1409 CertCloseStore(hstore, 0); in CertRegisterSystemStore()
1418 HCERTSTORE hstore; in CertUnregisterSystemStore() local
1427hstore = CertOpenStore(CERT_STORE_PROV_SYSTEM_REGISTRY_W, 0, 0, dwFlags | CERT_STORE_OPEN_EXISTING… in CertUnregisterSystemStore()
1428 if (hstore == NULL) in CertUnregisterSystemStore()
1431hstore = CertOpenStore(CERT_STORE_PROV_SYSTEM_REGISTRY_W, 0, 0, dwFlags | CERT_STORE_DELETE_FLAG, … in CertUnregisterSystemStore()
1432 if (hstore == NULL && GetLastError() == 0) in CertUnregisterSystemStore()
/reactos/modules/rostests/winetests/crypt32/
H A Dstore.c2079 HCERTSTORE hstore; in testCertRegisterSystemStore() local
2105hstore = CertOpenStore(CERT_STORE_PROV_SYSTEM_W, 0, 0, CERT_STORE_OPEN_EXISTING_FLAG | cur_flag, W… in testCertRegisterSystemStore()
2106 …ok (hstore != NULL, "Opening just registered store at %08x failed, last error %x\n", cur_flag, Get… in testCertRegisterSystemStore()
2112 ret = CertAddCertificateContextToStore(hstore, cert, CERT_STORE_ADD_NEW, NULL); in testCertRegisterSystemStore()
2115 cert2 = CertEnumCertificatesInStore(hstore, NULL); in testCertRegisterSystemStore()
2125 ret = CertCloseStore(hstore, 0); in testCertRegisterSystemStore()