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
7b8cb034
Commit
7b8cb034
authored
Oct 18, 2007
by
Juan Lang
Committed by
Alexandre Julliard
Oct 19, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Add stubs for I_CryptFindLruEntry and I_CryptCreateLruEntry.
parent
43bdf4e5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
crypt32.spec
dlls/crypt32/crypt32.spec
+2
-1
main.c
dlls/crypt32/main.c
+12
-0
No files found.
dlls/crypt32/crypt32.spec
View file @
7b8cb034
...
...
@@ -192,8 +192,9 @@
@ stub CryptVerifySignatureU
@ stdcall I_CryptAllocTls()
@ stdcall I_CryptCreateLruCache(ptr ptr)
@ st
ub I_CryptCreateLruEntry
@ st
dcall I_CryptCreateLruEntry(ptr long long)
@ stdcall I_CryptDetachTls(long)
@ stdcall I_CryptFindLruEntry(long long)
@ stdcall I_CryptFindLruEntryData(long long long)
@ stdcall I_CryptFlushLruCache(ptr long long)
@ stdcall I_CryptFreeLruCache(ptr long long)
...
...
dlls/crypt32/main.c
View file @
7b8cb034
...
...
@@ -75,12 +75,24 @@ BOOL WINAPI I_CryptCreateLruCache(void *unknown, HLRUCACHE *out)
return
TRUE
;
}
BOOL
WINAPI
I_CryptFindLruEntry
(
DWORD
unk0
,
DWORD
unk1
)
{
FIXME
(
"(%08x, %08x): stub!
\n
"
,
unk0
,
unk1
);
return
FALSE
;
}
BOOL
WINAPI
I_CryptFindLruEntryData
(
DWORD
unk0
,
DWORD
unk1
,
DWORD
unk2
)
{
FIXME
(
"(%08x, %08x, %08x): stub!
\n
"
,
unk0
,
unk1
,
unk2
);
return
FALSE
;
}
BOOL
WINAPI
I_CryptCreateLruEntry
(
HLRUCACHE
h
,
DWORD
unk0
,
DWORD
unk1
)
{
FIXME
(
"(%p, %08x, %08x): stub!
\n
"
,
h
,
unk0
,
unk1
);
return
FALSE
;
}
DWORD
WINAPI
I_CryptFlushLruCache
(
HLRUCACHE
h
,
DWORD
unk0
,
DWORD
unk1
)
{
FIXME
(
"(%p, %08x, %08x): stub!
\n
"
,
h
,
unk0
,
unk1
);
...
...
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