Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
b489f381
Commit
b489f381
authored
Feb 03, 2006
by
Juan Lang
Committed by
Alexandre Julliard
Feb 03, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Add stub for CryptEnumOIDInfo.
parent
5ccae1ae
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
crypt32.spec
dlls/crypt32/crypt32.spec
+1
-1
oid.c
dlls/crypt32/oid.c
+8
-0
No files found.
dlls/crypt32/crypt32.spec
View file @
b489f381
...
...
@@ -95,7 +95,7 @@
@ stdcall CryptEncodeObjectEx(long str ptr long ptr ptr ptr)
@ stub CryptEncryptMessage
@ stub CryptEnumOIDFunction
@ st
ub CryptEnumOIDInfo
@ st
dcall CryptEnumOIDInfo(long long ptr ptr)
@ stub CryptEnumProvidersU
@ stub CryptExportPKCS8
@ stdcall CryptExportPublicKeyInfo(long long long ptr ptr)
...
...
dlls/crypt32/oid.c
View file @
b489f381
...
...
@@ -76,6 +76,14 @@ void CRYPT_FreeFunctionSets(void)
DeleteCriticalSection
(
&
funcSetCS
);
}
BOOL
WINAPI
CryptEnumOIDInfo
(
DWORD
dwGroupId
,
DWORD
dwFlags
,
void
*
pvArg
,
PFN_CRYPT_ENUM_OID_INFO
pfnEnumOIDInfo
)
{
FIXME
(
"(%ld, %08lx, %p, %p): stub
\n
"
,
dwGroupId
,
dwFlags
,
pvArg
,
pfnEnumOIDInfo
);
return
TRUE
;
}
/* There is no free function associated with this; therefore, the sets are
* freed when crypt32.dll is unloaded.
*/
...
...
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