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
0379d421
Commit
0379d421
authored
May 17, 2006
by
Juan Lang
Committed by
Alexandre Julliard
May 18, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Add stubs for CertDuplicateCRLContext and CertDuplicateCTLContext.
parent
b980bbec
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
2 deletions
+19
-2
crypt32.spec
dlls/crypt32/crypt32.spec
+2
-2
store.c
dlls/crypt32/store.c
+17
-0
No files found.
dlls/crypt32/crypt32.spec
View file @
0379d421
...
...
@@ -24,8 +24,8 @@
@ stdcall CertDeleteCRLFromStore(ptr)
@ stdcall CertDeleteCTLFromStore(ptr)
@ stdcall CertDeleteCertificateFromStore(ptr)
@ st
ub CertDuplicateCRLContext
@ st
ub CertDuplicateCTLContext
@ st
dcall CertDuplicateCRLContext(ptr)
@ st
dcall CertDuplicateCTLContext(ptr)
@ stdcall CertDuplicateCertificateContext(ptr)
@ stdcall CertDuplicateStore(ptr)
@ stub CertEnumCRLContextProperties
...
...
dlls/crypt32/store.c
View file @
0379d421
...
...
@@ -54,6 +54,7 @@ typedef BOOL (WINAPI *AddContextToStoreFunc)(HCERTSTORE hCertStore,
typedef
BOOL
(
WINAPI
*
AddEncodedContextToStoreFunc
)(
HCERTSTORE
hCertStore
,
DWORD
dwCertEncodingType
,
const
BYTE
*
pbEncoded
,
DWORD
cbEncoded
,
DWORD
dwAddDisposition
,
const
void
**
ppContext
);
typedef
const
void
*
(
WINAPI
*
DuplicateContextFunc
)(
const
void
*
context
);
typedef
const
void
*
(
WINAPI
*
EnumContextsInStoreFunc
)(
HCERTSTORE
hCertStore
,
const
void
*
pPrevContext
);
typedef
BOOL
(
WINAPI
*
GetContextPropertyFunc
)(
const
void
*
context
,
...
...
@@ -71,6 +72,7 @@ typedef struct _WINE_CONTEXT_INTERFACE
CreateContextFunc
create
;
AddContextToStoreFunc
addContextToStore
;
AddEncodedContextToStoreFunc
addEncodedToStore
;
DuplicateContextFunc
duplicate
;
EnumContextsInStoreFunc
enumContextsInStore
;
GetContextPropertyFunc
getProp
;
SetContextPropertyFunc
setProp
;
...
...
@@ -83,6 +85,7 @@ static const WINE_CONTEXT_INTERFACE gCertInterface = {
(
CreateContextFunc
)
CertCreateCertificateContext
,
(
AddContextToStoreFunc
)
CertAddCertificateContextToStore
,
(
AddEncodedContextToStoreFunc
)
CertAddEncodedCertificateToStore
,
(
DuplicateContextFunc
)
CertDuplicateCertificateContext
,
(
EnumContextsInStoreFunc
)
CertEnumCertificatesInStore
,
(
GetContextPropertyFunc
)
CertGetCertificateContextProperty
,
(
SetContextPropertyFunc
)
CertSetCertificateContextProperty
,
...
...
@@ -95,6 +98,7 @@ static const WINE_CONTEXT_INTERFACE gCRLInterface = {
(
CreateContextFunc
)
CertCreateCRLContext
,
(
AddContextToStoreFunc
)
CertAddCRLContextToStore
,
(
AddEncodedContextToStoreFunc
)
CertAddEncodedCRLToStore
,
(
DuplicateContextFunc
)
CertDuplicateCRLContext
,
(
EnumContextsInStoreFunc
)
CertEnumCRLsInStore
,
(
GetContextPropertyFunc
)
CertGetCRLContextProperty
,
(
SetContextPropertyFunc
)
CertSetCRLContextProperty
,
...
...
@@ -107,6 +111,7 @@ static const WINE_CONTEXT_INTERFACE gCTLInterface = {
(
CreateContextFunc
)
CertCreateCTLContext
,
(
AddContextToStoreFunc
)
CertAddCTLContextToStore
,
(
AddEncodedContextToStoreFunc
)
CertAddEncodedCTLToStore
,
(
DuplicateContextFunc
)
CertDuplicateCTLContext
,
(
EnumContextsInStoreFunc
)
CertEnumCTLsInStore
,
(
GetContextPropertyFunc
)
CertGetCTLContextProperty
,
(
SetContextPropertyFunc
)
CertSetCTLContextProperty
,
...
...
@@ -2355,6 +2360,12 @@ BOOL WINAPI CertAddCRLContextToStore( HCERTSTORE hCertStore,
return
TRUE
;
}
PCCRL_CONTEXT
WINAPI
CertDuplicateCRLContext
(
PCCRL_CONTEXT
pCrlContext
)
{
FIXME
(
"(%p): stub
\n
"
,
pCrlContext
);
return
pCrlContext
;
}
BOOL
WINAPI
CertFreeCRLContext
(
PCCRL_CONTEXT
pCrlContext
)
{
FIXME
(
"%p
\n
"
,
pCrlContext
);
...
...
@@ -2402,6 +2413,12 @@ BOOL WINAPI CertAddCTLContextToStore(HCERTSTORE hCertStore,
return
TRUE
;
}
PCCTL_CONTEXT
WINAPI
CertDuplicateCTLContext
(
PCCTL_CONTEXT
pCtlContext
)
{
FIXME
(
"(%p): stub
\n
"
,
pCtlContext
);
return
pCtlContext
;
}
BOOL
WINAPI
CertFreeCTLContext
(
PCCTL_CONTEXT
pCtlContext
)
{
FIXME
(
"(%p): stub
\n
"
,
pCtlContext
);
...
...
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