Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Louis Lenders
wine
Commits
0c4c1985
Commit
0c4c1985
authored
17 years ago
by
Juan Lang
Committed by
Alexandre Julliard
17 years ago
Browse files
Options
Downloads
Patches
Plain Diff
crypt32: Add stub for I_CryptGetAsn1Decoder.
parent
84a54b5a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/crypt32/crypt32.spec
+1
-0
1 addition, 0 deletions
dlls/crypt32/crypt32.spec
dlls/crypt32/main.c
+6
-0
6 additions, 0 deletions
dlls/crypt32/main.c
with
7 additions
and
0 deletions
dlls/crypt32/crypt32.spec
+
1
−
0
View file @
0c4c1985
...
...
@@ -196,6 +196,7 @@
@ stdcall I_CryptFlushLruCache(ptr long long)
@ stdcall I_CryptFreeLruCache(ptr long long)
@ stdcall I_CryptFreeTls(long long)
@ stdcall I_CryptGetAsn1Decoder(long)
@ stdcall I_CryptGetDefaultCryptProv(long)
@ stub I_CryptGetDefaultCryptProvForEncrypt
@ stdcall I_CryptGetOssGlobal(long)
...
...
This diff is collapsed.
Click to expand it.
dlls/crypt32/main.c
+
6
−
0
View file @
0c4c1985
...
...
@@ -206,6 +206,12 @@ BOOL WINAPI I_CryptUninstallAsn1Module(void *x)
return
TRUE
;
}
void
*
WINAPI
I_CryptGetAsn1Decoder
(
long
x
)
{
FIXME
(
"%08lx
\n
"
,
x
);
return
NULL
;
}
BOOL
WINAPI
CryptFormatObject
(
DWORD
dwCertEncodingType
,
DWORD
dwFormatType
,
DWORD
dwFormatStrType
,
void
*
pFormatStruct
,
LPCSTR
lpszStructType
,
const
BYTE
*
pbEncoded
,
DWORD
cbEncoded
,
void
*
pbFormat
,
DWORD
*
pcbFormat
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment