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
d34bd643
Commit
d34bd643
authored
Aug 16, 2002
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Aug 16, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some more stubs.
parent
5a6a71f3
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
2 deletions
+31
-2
crypt32.spec
dlls/crypt32/crypt32.spec
+2
-2
main.c
dlls/crypt32/main.c
+29
-0
No files found.
dlls/crypt32/crypt32.spec
View file @
d34bd643
...
...
@@ -105,7 +105,7 @@
@ stub CryptGetMessageCertificates
@ stub CryptGetMessageSignerCount
@ stub CryptGetOIDFunctionAddress
@ st
ub
CryptGetOIDFunctionValue
@ st
dcall CryptGetOIDFunctionValue(long str str wstr ptr ptr ptr)
CryptGetOIDFunctionValue
@ stub CryptHashCertificate
@ stub CryptHashMessage
@ stub CryptHashPublicKeyInfo
...
...
@@ -133,7 +133,7 @@
@ stub CryptMsgUpdate
@ stub CryptMsgVerifyCountersignatureEncoded
@ stub CryptRegisterDefaultOIDFunction
@ st
ub
CryptRegisterOIDFunction
@ st
dcall CryptRegisterOIDFunction(long str str wstr str)
CryptRegisterOIDFunction
@ stub CryptRegisterOIDInfo
@ stdcall CryptSIPAddProvider(ptr) CryptSIPAddProvider
@ stdcall CryptSIPLoad(ptr long ptr) CryptSIPLoad
...
...
dlls/crypt32/main.c
View file @
d34bd643
...
...
@@ -20,6 +20,9 @@
#include "winbase.h"
#include "wincrypt.h"
/* #include "mssip.h" */
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
crypt
);
typedef
struct
SIP_DISPATCH_INFO_
SIP_DISPATCH_INFO
,
*
LPSIP_DISPATCH_INFO
;
typedef
struct
SIP_ADD_NEWPROVIDER_
SIP_ADD_NEWPROVIDER
,
*
PSIP_ADD_NEWPROVIDER
;
...
...
@@ -27,43 +30,69 @@ 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
)
{
FIXME
(
"stub!
\n
"
);
return
FALSE
;
}
/* these functions all have an unknown number of args */
BOOL
WINAPI
I_CryptFindLruEntryData
(
DWORD
x
)
{
FIXME
(
"stub!
\n
"
);
return
FALSE
;
}
BOOL
WINAPI
I_CryptFlushLruCache
(
DWORD
x
)
{
FIXME
(
"stub!
\n
"
);
return
FALSE
;
}
BOOL
WINAPI
I_CryptFreeLruCache
(
DWORD
x
)
{
FIXME
(
"stub!
\n
"
);
return
FALSE
;
}
BOOL
WINAPI
CryptSIPRemoveProvider
(
GUID
*
pgProv
)
{
FIXME
(
"stub!
\n
"
);
return
FALSE
;
}
BOOL
WINAPI
CryptSIPAddProvider
(
SIP_ADD_NEWPROVIDER
*
psNewProv
)
{
FIXME
(
"stub!
\n
"
);
return
FALSE
;
}
BOOL
WINAPI
CryptSIPRetrieveSubjectGuid
(
LPCWSTR
FileName
,
OPTIONAL
HANDLE
hFileIn
,
GUID
*
pgSubject
)
{
FIXME
(
"stub!
\n
"
);
return
FALSE
;
}
BOOL
WINAPI
CryptSIPLoad
(
const
GUID
*
pgSubject
,
DWORD
dwFlags
,
SIP_DISPATCH_INFO
*
pSipDispatch
)
{
FIXME
(
"stub!
\n
"
);
return
FALSE
;
}
BOOL
WINAPI
CryptGetOIDFunctionValue
(
DWORD
dwEncodingType
,
LPCSTR
pszFuncName
,
LPCSTR
pszOID
,
LPCWSTR
pwszValueName
,
DWORD
*
pdwValueType
,
BYTE
*
pbValueData
,
DWORD
*
pcbValueData
)
{
FIXME
(
"(%lx,%s,%s,%s,%p,%p,%p) stub!
\n
"
,
dwEncodingType
,
pszFuncName
,
pszOID
,
debugstr_w
(
pwszValueName
),
pdwValueType
,
pbValueData
,
pcbValueData
);
return
FALSE
;
}
BOOL
WINAPI
CryptRegisterOIDFunction
(
DWORD
dwEncodingType
,
LPCSTR
pszFuncName
,
LPCSTR
pszOID
,
LPCWSTR
pwszDll
,
LPCSTR
pszOverrideFuncName
)
{
FIXME
(
"(%lx,%s,%s,%s,%s) stub!
\n
"
,
dwEncodingType
,
pszFuncName
,
pszOID
,
debugstr_w
(
pwszDll
),
pszOverrideFuncName
);
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