Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
9f85156e
Commit
9f85156e
authored
Aug 16, 2007
by
Juan Lang
Committed by
Alexandre Julliard
Aug 17, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Move collection stores to a separate file.
parent
adaaab92
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
3 deletions
+11
-3
Makefile.in
dlls/crypt32/Makefile.in
+4
-3
collectionstore.c
dlls/crypt32/collectionstore.c
+0
-0
crypt32_private.h
dlls/crypt32/crypt32_private.h
+7
-0
store.c
dlls/crypt32/store.c
+0
-0
No files found.
dlls/crypt32/Makefile.in
View file @
9f85156e
...
...
@@ -11,10 +11,12 @@ C_SRCS = \
base64.c
\
cert.c
\
chain.c
\
c
rl
.c
\
c
ollectionstore
.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
...
...
dlls/crypt32/collectionstore.c
0 → 100644
View file @
9f85156e
This diff is collapsed.
Click to expand it.
dlls/crypt32/crypt32_private.h
View file @
9f85156e
...
...
@@ -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
...
...
dlls/crypt32/store.c
View file @
9f85156e
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment