Commit 9f85156e authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

crypt32: Move collection stores to a separate file.

parent adaaab92
......@@ -11,10 +11,12 @@ C_SRCS = \
base64.c \
cert.c \
chain.c \
crl.c \
collectionstore.c \
context.c \
crl.c \
decode.c \
encode.c \
main.c \
msg.c \
oid.c \
proplist.c \
......@@ -22,8 +24,7 @@ C_SRCS = \
serialize.c \
sip.c \
store.c \
str.c \
main.c
str.c
RC_SRCS = crypt32.rc
......
......@@ -231,6 +231,13 @@ typedef struct WINE_CRYPTCERTSTORE
PCONTEXT_PROPERTY_LIST properties;
} WINECRYPT_CERTSTORE, *PWINECRYPT_CERTSTORE;
void CRYPT_InitStore(WINECRYPT_CERTSTORE *store, HCRYPTPROV hCryptProv,
DWORD dwFlags, CertStoreType type);
void CRYPT_FreeStore(PWINECRYPT_CERTSTORE store);
PWINECRYPT_CERTSTORE CRYPT_CollectionOpenStore(HCRYPTPROV hCryptProv,
DWORD dwFlags, const void *pvPara);
/* Helper function for store reading functions and
* CertAddSerializedElementToStore. Returns a context of the appropriate type
* if it can, or NULL otherwise. Doesn't validate any of the properties in
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment