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 = \ ...@@ -11,10 +11,12 @@ C_SRCS = \
base64.c \ base64.c \
cert.c \ cert.c \
chain.c \ chain.c \
crl.c \ collectionstore.c \
context.c \ context.c \
crl.c \
decode.c \ decode.c \
encode.c \ encode.c \
main.c \
msg.c \ msg.c \
oid.c \ oid.c \
proplist.c \ proplist.c \
...@@ -22,8 +24,7 @@ C_SRCS = \ ...@@ -22,8 +24,7 @@ C_SRCS = \
serialize.c \ serialize.c \
sip.c \ sip.c \
store.c \ store.c \
str.c \ str.c
main.c
RC_SRCS = crypt32.rc RC_SRCS = crypt32.rc
......
...@@ -231,6 +231,13 @@ typedef struct WINE_CRYPTCERTSTORE ...@@ -231,6 +231,13 @@ typedef struct WINE_CRYPTCERTSTORE
PCONTEXT_PROPERTY_LIST properties; PCONTEXT_PROPERTY_LIST properties;
} WINECRYPT_CERTSTORE, *PWINECRYPT_CERTSTORE; } 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 /* Helper function for store reading functions and
* CertAddSerializedElementToStore. Returns a context of the appropriate type * CertAddSerializedElementToStore. Returns a context of the appropriate type
* if it can, or NULL otherwise. Doesn't validate any of the properties in * 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