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
b4eb9bf2
Commit
b4eb9bf2
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 I_CertUpdateStore stub.
parent
7b8cb034
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
crypt32.spec
dlls/crypt32/crypt32.spec
+1
-0
main.c
dlls/crypt32/main.c
+10
-0
No files found.
dlls/crypt32/crypt32.spec
View file @
b4eb9bf2
...
...
@@ -190,6 +190,7 @@
@ stdcall CryptVerifyMessageSignature(ptr long ptr long ptr ptr ptr)
@ stub CryptVerifyMessageSignatureWithKey
@ stub CryptVerifySignatureU
@ stdcall I_CertUpdateStore(ptr ptr long long)
@ stdcall I_CryptAllocTls()
@ stdcall I_CryptCreateLruCache(ptr ptr)
@ stdcall I_CryptCreateLruEntry(ptr long long)
...
...
dlls/crypt32/main.c
View file @
b4eb9bf2
...
...
@@ -60,6 +60,16 @@ HCRYPTPROV CRYPT_GetDefaultProvider(void)
return
hDefProv
;
}
/* Appears to be called to update the contents of store1 with those in store2.
* The second two parameters are unknown.
*/
BOOL
WINAPI
I_CertUpdateStore
(
HCERTSTORE
store1
,
HCERTSTORE
store2
,
DWORD
unk0
,
DWORD
unk1
)
{
FIXME
(
"(%p, %p, %08x, %08x)
\n
"
,
store1
,
store2
,
unk0
,
unk1
);
return
FALSE
;
}
typedef
void
*
HLRUCACHE
;
/* this function is called by Internet Explorer when it is about to verify a
...
...
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