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
33c70d35
Commit
33c70d35
authored
Nov 03, 2009
by
Juan Lang
Committed by
Alexandre Julliard
Nov 04, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Add an implementation of CertControlStore for memory stores.
parent
e6047ae5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
store.c
dlls/crypt32/store.c
+8
-1
No files found.
dlls/crypt32/store.c
View file @
33c70d35
...
@@ -283,6 +283,13 @@ static BOOL CRYPT_MemDeleteCtl(PWINECRYPT_CERTSTORE store, void *pCtlContext)
...
@@ -283,6 +283,13 @@ static BOOL CRYPT_MemDeleteCtl(PWINECRYPT_CERTSTORE store, void *pCtlContext)
return
ret
;
return
ret
;
}
}
static
BOOL
WINAPI
CRYPT_MemControl
(
HCERTSTORE
hCertStore
,
DWORD
dwFlags
,
DWORD
dwCtrlType
,
void
const
*
pvCtrlPara
)
{
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
static
void
WINAPI
CRYPT_MemCloseStore
(
HCERTSTORE
hCertStore
,
DWORD
dwFlags
)
static
void
WINAPI
CRYPT_MemCloseStore
(
HCERTSTORE
hCertStore
,
DWORD
dwFlags
)
{
{
WINE_MEMSTORE
*
store
=
hCertStore
;
WINE_MEMSTORE
*
store
=
hCertStore
;
...
@@ -326,7 +333,7 @@ static WINECRYPT_CERTSTORE *CRYPT_MemOpenStore(HCRYPTPROV hCryptProv,
...
@@ -326,7 +333,7 @@ static WINECRYPT_CERTSTORE *CRYPT_MemOpenStore(HCRYPTPROV hCryptProv,
store
->
hdr
.
ctls
.
addContext
=
CRYPT_MemAddCtl
;
store
->
hdr
.
ctls
.
addContext
=
CRYPT_MemAddCtl
;
store
->
hdr
.
ctls
.
enumContext
=
CRYPT_MemEnumCtl
;
store
->
hdr
.
ctls
.
enumContext
=
CRYPT_MemEnumCtl
;
store
->
hdr
.
ctls
.
deleteContext
=
CRYPT_MemDeleteCtl
;
store
->
hdr
.
ctls
.
deleteContext
=
CRYPT_MemDeleteCtl
;
store
->
hdr
.
control
=
NULL
;
store
->
hdr
.
control
=
CRYPT_MemControl
;
store
->
certs
=
ContextList_Create
(
pCertInterface
,
store
->
certs
=
ContextList_Create
(
pCertInterface
,
sizeof
(
CERT_CONTEXT
));
sizeof
(
CERT_CONTEXT
));
store
->
crls
=
ContextList_Create
(
pCRLInterface
,
store
->
crls
=
ContextList_Create
(
pCRLInterface
,
...
...
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