Lines Matching refs:lpszStoreProvider
815 HCERTSTORE WINAPI CertOpenStore(LPCSTR lpszStoreProvider, in CertOpenStore() argument
822 TRACE("(%s, %08x, %08lx, %08x, %p)\n", debugstr_a(lpszStoreProvider), in CertOpenStore()
825 if (IS_INTOID(lpszStoreProvider)) in CertOpenStore()
827 switch (LOWORD(lpszStoreProvider)) in CertOpenStore()
872 if (LOWORD(lpszStoreProvider)) in CertOpenStore()
873 FIXME("unimplemented type %d\n", LOWORD(lpszStoreProvider)); in CertOpenStore()
876 else if (!strcasecmp(lpszStoreProvider, sz_CERT_STORE_PROV_MEMORY)) in CertOpenStore()
878 else if (!strcasecmp(lpszStoreProvider, sz_CERT_STORE_PROV_FILENAME_W)) in CertOpenStore()
880 else if (!strcasecmp(lpszStoreProvider, sz_CERT_STORE_PROV_SYSTEM)) in CertOpenStore()
882 else if (!strcasecmp(lpszStoreProvider, sz_CERT_STORE_PROV_PKCS7)) in CertOpenStore()
884 else if (!strcasecmp(lpszStoreProvider, sz_CERT_STORE_PROV_SERIALIZED)) in CertOpenStore()
886 else if (!strcasecmp(lpszStoreProvider, sz_CERT_STORE_PROV_COLLECTION)) in CertOpenStore()
888 else if (!strcasecmp(lpszStoreProvider, sz_CERT_STORE_PROV_SYSTEM_REGISTRY)) in CertOpenStore()
892 FIXME("unimplemented type %s\n", lpszStoreProvider); in CertOpenStore()
897 hcs = CRYPT_ProvOpenStore(lpszStoreProvider, dwMsgAndCertEncodingType, in CertOpenStore()