Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
7bfa0d2c
Commit
7bfa0d2c
authored
Jan 27, 2009
by
Hans Leidekker
Committed by
Alexandre Julliard
Jan 27, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
schannel: Add stub implementations of SslEmptyCacheA/W.
parent
56f57693
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
schannel.spec
dlls/schannel/schannel.spec
+2
-2
schannel_main.c
dlls/schannel/schannel_main.c
+12
-0
No files found.
dlls/schannel/schannel.spec
View file @
7bfa0d2c
...
...
@@ -26,8 +26,8 @@
@ stdcall SpLsaModeInitialize(long ptr ptr ptr)
@ stdcall SpUserModeInitialize(long ptr ptr ptr)
@ stub SslCrackCertificate
@ st
ub SslEmptyCacheA
@ st
ub SslEmptyCacheW
@ st
dcall SslEmptyCacheA(str long)
@ st
dcall SslEmptyCacheW(wstr long)
@ stub SslFreeCertificate
@ stub SslGenerateKeyPair
@ stub SslGenerateRandomBits
...
...
dlls/schannel/schannel_main.c
View file @
7bfa0d2c
...
...
@@ -38,3 +38,15 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return
TRUE
;
}
BOOL
WINAPI
SslEmptyCacheA
(
LPSTR
target
,
DWORD
flags
)
{
FIXME
(
"%s %x
\n
"
,
debugstr_a
(
target
),
flags
);
return
TRUE
;
}
BOOL
WINAPI
SslEmptyCacheW
(
LPWSTR
target
,
DWORD
flags
)
{
FIXME
(
"%s %x
\n
"
,
debugstr_w
(
target
),
flags
);
return
TRUE
;
}
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