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
e7c2e05f
Commit
e7c2e05f
authored
May 14, 2007
by
Mounir IDRASSI
Committed by
Alexandre Julliard
May 14, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Stub implementation of CryptFindLocalizedName.
parent
ebe83d56
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
crypt32.spec
dlls/crypt32/crypt32.spec
+1
-0
oid.c
dlls/crypt32/oid.c
+9
-0
No files found.
dlls/crypt32/crypt32.spec
View file @
e7c2e05f
...
...
@@ -113,6 +113,7 @@
@ stub CryptExportPKCS8
@ stdcall CryptExportPublicKeyInfo(long long long ptr ptr)
@ stdcall CryptExportPublicKeyInfoEx(long long long str long ptr ptr ptr)
@ stdcall CryptFindLocalizedName(wstr)
@ stdcall CryptFindOIDInfo(long ptr long)
@ stdcall CryptFormatObject(long long long ptr str ptr long ptr ptr)
@ stdcall CryptFreeOIDFunctionAddress(long long)
...
...
dlls/crypt32/oid.c
View file @
e7c2e05f
...
...
@@ -839,6 +839,15 @@ BOOL WINAPI CryptUnregisterDefaultOIDFunction(DWORD dwEncodingType,
return
ret
;
}
/********************************************************************
* CryptFindLocalizedName (CRYPT32.@)
*/
LPCWSTR
WINAPI
CryptFindLocalizedName
(
LPCWSTR
pwszCryptName
)
{
FIXME
(
" %s - stub
\n
"
,
debugstr_w
(
pwszCryptName
));
return
NULL
;
}
static
CRITICAL_SECTION
oidInfoCS
;
static
struct
list
oidInfo
;
...
...
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