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
29853a90
Commit
29853a90
authored
Jun 13, 2002
by
Mike McCormack
Committed by
Alexandre Julliard
Jun 13, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a few stubs.
parent
96750898
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
4 deletions
+31
-4
crypt32.spec
dlls/crypt32/crypt32.spec
+4
-4
main.c
dlls/crypt32/main.c
+27
-0
No files found.
dlls/crypt32/crypt32.spec
View file @
29853a90
...
...
@@ -137,10 +137,10 @@ name crypt32
@ stub CryptRegisterDefaultOIDFunction
@ stub CryptRegisterOIDFunction
@ stub CryptRegisterOIDInfo
@ st
ub
CryptSIPAddProvider
@ st
ub
CryptSIPLoad
@ st
ub
CryptSIPRemoveProvider
@ st
ub
CryptSIPRetrieveSubjectGuid
@ st
dcall CryptSIPAddProvider(ptr)
CryptSIPAddProvider
@ st
dcall CryptSIPLoad(ptr long ptr)
CryptSIPLoad
@ st
dcall CryptSIPRemoveProvider(ptr)
CryptSIPRemoveProvider
@ st
dcall CryptSIPRetrieveSubjectGuid(wstr long ptr)
CryptSIPRetrieveSubjectGuid
@ stub CryptSetAsyncParam
@ stub CryptSetOIDFunctionValue
@ stub CryptSetProviderU
...
...
dlls/crypt32/main.c
View file @
29853a90
...
...
@@ -18,6 +18,11 @@
#include "config.h"
#include "winbase.h"
#include "wincrypt.h"
/* #include "mssip.h" */
typedef
struct
SIP_DISPATCH_INFO_
SIP_DISPATCH_INFO
,
*
LPSIP_DISPATCH_INFO
;
typedef
struct
SIP_ADD_NEWPROVIDER_
SIP_ADD_NEWPROVIDER
,
*
PSIP_ADD_NEWPROVIDER
;
/* this function is called by Internet Explorer when it is about to verify a downloaded component */
BOOL
WINAPI
I_CryptCreateLruCache
(
DWORD
x
,
DWORD
y
)
...
...
@@ -40,3 +45,25 @@ BOOL WINAPI I_CryptFreeLruCache(DWORD x)
{
return
FALSE
;
}
BOOL
WINAPI
CryptSIPRemoveProvider
(
GUID
*
pgProv
)
{
return
FALSE
;
}
BOOL
WINAPI
CryptSIPAddProvider
(
SIP_ADD_NEWPROVIDER
*
psNewProv
)
{
return
FALSE
;
}
BOOL
WINAPI
CryptSIPRetrieveSubjectGuid
(
LPCWSTR
FileName
,
OPTIONAL
HANDLE
hFileIn
,
GUID
*
pgSubject
)
{
return
FALSE
;
}
BOOL
WINAPI
CryptSIPLoad
(
const
GUID
*
pgSubject
,
DWORD
dwFlags
,
SIP_DISPATCH_INFO
*
pSipDispatch
)
{
return
FALSE
;
}
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