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
f0da42f7
Commit
f0da42f7
authored
Jan 30, 2018
by
Alex Henrie
Committed by
Alexandre Julliard
Feb 01, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add CertRegisterSystemStore and CertUnregisterSystemStore.
Signed-off-by:
Alex Henrie
<
alexhenrie24@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
db5a57c5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
store.c
dlls/crypt32/store.c
+1
-1
wincrypt.h
include/wincrypt.h
+5
-0
No files found.
dlls/crypt32/store.c
View file @
f0da42f7
...
...
@@ -1414,7 +1414,7 @@ BOOL WINAPI CertRegisterSystemStore(const void *pvSystemStore, DWORD dwFlags,
return
FALSE
;
}
BOOL
WINAPI
CertUnregisterSystemStore
(
void
*
pvSystemStore
,
DWORD
dwFlags
)
BOOL
WINAPI
CertUnregisterSystemStore
(
const
void
*
pvSystemStore
,
DWORD
dwFlags
)
{
HCERTSTORE
hstore
;
...
...
include/wincrypt.h
View file @
f0da42f7
...
...
@@ -4087,6 +4087,11 @@ BOOL WINAPI CertEnumSystemStoreLocation(DWORD dwFlags, void *pvArg,
BOOL
WINAPI
CertEnumSystemStore
(
DWORD
dwFlags
,
void
*
pvSystemStoreLocationPara
,
void
*
pvArg
,
PFN_CERT_ENUM_SYSTEM_STORE
pfnEnum
);
BOOL
WINAPI
CertRegisterSystemStore
(
const
void
*
store
,
DWORD
flags
,
CERT_SYSTEM_STORE_INFO
*
info
,
void
*
reserved
);
BOOL
WINAPI
CertUnregisterSystemStore
(
const
void
*
store
,
DWORD
flags
);
BOOL
WINAPI
CertEnumPhysicalStore
(
const
void
*
pvSystemStore
,
DWORD
dwFlags
,
void
*
pvArg
,
PFN_CERT_ENUM_PHYSICAL_STORE
pfnEnum
);
...
...
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