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
d9972cb4
Commit
d9972cb4
authored
Jun 20, 2009
by
Anders Jonsson
Committed by
Alexandre Julliard
Jun 24, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Add CryptRegisterOIDInfo stub.
parent
508270b5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
crypt32.spec
dlls/crypt32/crypt32.spec
+1
-1
oid.c
dlls/crypt32/oid.c
+10
-0
No files found.
dlls/crypt32/crypt32.spec
View file @
d9972cb4
...
...
@@ -163,7 +163,7 @@
@ stdcall CryptQueryObject(long ptr long long long ptr ptr ptr ptr ptr ptr)
@ stdcall CryptRegisterDefaultOIDFunction(long str long wstr)
@ stdcall CryptRegisterOIDFunction(long str str wstr str)
@ st
ub CryptRegisterOIDInfo
@ st
dcall CryptRegisterOIDInfo(ptr long)
@ stdcall CryptSIPAddProvider(ptr)
@ stdcall CryptSIPCreateIndirectData(ptr ptr ptr)
@ stdcall CryptSIPGetSignedDataMsg(ptr ptr long ptr ptr)
...
...
dlls/crypt32/oid.c
View file @
d9972cb4
...
...
@@ -665,6 +665,16 @@ error_close_key:
}
/***********************************************************************
* CryptRegisterOIDInfo (CRYPT32.@)
*/
BOOL
WINAPI
CryptRegisterOIDInfo
(
PCCRYPT_OID_INFO
pInfo
,
DWORD
dwFlags
)
{
FIXME
(
"(%p, %x): stub
\n
"
,
pInfo
,
dwFlags
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* CryptUnregisterOIDFunction (CRYPT32.@)
*/
BOOL
WINAPI
CryptUnregisterOIDFunction
(
DWORD
dwEncodingType
,
LPCSTR
pszFuncName
,
...
...
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