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
3eb62ad6
Commit
3eb62ad6
authored
Aug 29, 2008
by
Juan Lang
Committed by
Alexandre Julliard
Sep 02, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Implement CertDuplicateCTLContext.
parent
0ada2b93
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
ctl.c
dlls/crypt32/ctl.c
+7
-0
store.c
dlls/crypt32/store.c
+0
-6
No files found.
dlls/crypt32/ctl.c
View file @
3eb62ad6
...
...
@@ -156,6 +156,13 @@ end:
return
(
PCCTL_CONTEXT
)
ctl
;
}
PCCTL_CONTEXT
WINAPI
CertDuplicateCTLContext
(
PCCTL_CONTEXT
pCtlContext
)
{
TRACE
(
"(%p)
\n
"
,
pCtlContext
);
Context_AddRef
((
void
*
)
pCtlContext
,
sizeof
(
CTL_CONTEXT
));
return
pCtlContext
;
}
static
void
CTLDataContext_Free
(
void
*
context
)
{
PCTL_CONTEXT
ctlContext
=
(
PCTL_CONTEXT
)
context
;
...
...
dlls/crypt32/store.c
View file @
3eb62ad6
...
...
@@ -1062,12 +1062,6 @@ BOOL WINAPI CertAddCTLContextToStore(HCERTSTORE hCertStore,
return
TRUE
;
}
PCCTL_CONTEXT
WINAPI
CertDuplicateCTLContext
(
PCCTL_CONTEXT
pCtlContext
)
{
FIXME
(
"(%p): stub
\n
"
,
pCtlContext
);
return
pCtlContext
;
}
BOOL
WINAPI
CertDeleteCTLFromStore
(
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