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
Sebastian Mayr
wine
Commits
43d85553
Commit
43d85553
authored
19 years ago
by
Juan Lang
Committed by
Alexandre Julliard
19 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix parameter count on some stubs (thanks to Marcus Meissner for
spotting that.) Add a few more stubs.
parent
eaae4471
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/crypt32/cert.c
+1
-1
1 addition, 1 deletion
dlls/crypt32/cert.c
dlls/crypt32/crypt32.spec
+7
-7
7 additions, 7 deletions
dlls/crypt32/crypt32.spec
dlls/crypt32/main.c
+51
-13
51 additions, 13 deletions
dlls/crypt32/main.c
with
59 additions
and
21 deletions
dlls/crypt32/cert.c
+
1
−
1
View file @
43d85553
...
...
@@ -3288,7 +3288,7 @@ BOOL WINAPI CryptVerifyCertificateSignatureEx(HCRYPTPROV hCryptProv,
HCRYPTOIDFUNCSET
WINAPI
CryptInitOIDFunctionSet
(
LPCSTR
pszFuncName
,
DWORD
dwFlags
)
{
FIXME
(
"stub: %s %lx
\n
"
,
debugstr_a
(
pszFuncName
),
dwFlags
);
return
NULL
;
return
(
HCRYPTOIDFUNCSET
)
0xbaadf00d
;
}
BOOL
WINAPI
CryptUnregisterDefaultOIDFunction
(
DWORD
dwEncodingType
,
...
...
This diff is collapsed.
Click to expand it.
dlls/crypt32/crypt32.spec
+
7
−
7
View file @
43d85553
...
...
@@ -104,11 +104,11 @@
@ stub CryptFormatObject
@ stub CryptFreeOIDFunctionAddress
@ stub CryptGetAsyncParam
@ st
ub
CryptGetDefaultOIDDllList
@ st
dcall
CryptGetDefaultOIDDllList
(long long ptr ptr)
@ stub CryptGetDefaultOIDFunctionAddress
@ stub CryptGetMessageCertificates
@ stub CryptGetMessageSignerCount
@ st
ub
CryptGetOIDFunctionAddress
@ st
dcall
CryptGetOIDFunctionAddress
(long long str long ptr ptr)
@ stdcall CryptGetOIDFunctionValue(long str str wstr ptr ptr ptr)
@ stdcall CryptHashCertificate(long long long ptr long ptr ptr)
@ stub CryptHashMessage
...
...
@@ -118,7 +118,7 @@
@ stdcall CryptImportPublicKeyInfo(long long ptr ptr)
@ stdcall CryptImportPublicKeyInfoEx(long long ptr long long ptr ptr)
@ stdcall CryptInitOIDFunctionSet(str long)
@ st
ub
CryptInstallOIDFunctionAddress
@ st
dcall
CryptInstallOIDFunctionAddress
(ptr long str long ptr long)
@ stub CryptLoadSip
@ stdcall CryptMemAlloc(long)
@ stdcall CryptMemFree(ptr)
...
...
@@ -166,12 +166,12 @@
@ stub CryptVerifyMessageSignatureWithKey
@ stub CryptVerifySignatureU
@ stdcall I_CryptAllocTls()
@ stdcall I_CryptCreateLruCache(
long long
)
@ stdcall I_CryptCreateLruCache(
ptr ptr
)
@ stub I_CryptCreateLruEntry
@ stdcall I_CryptDetachTls(long)
@ stdcall I_CryptFindLruEntryData(long)
@ stdcall I_CryptFlushLruCache(long)
@ stdcall I_CryptFreeLruCache(long)
@ stdcall I_CryptFindLruEntryData(long
long long
)
@ stdcall I_CryptFlushLruCache(
ptr long
long)
@ stdcall I_CryptFreeLruCache(
ptr long
long)
@ stdcall I_CryptFreeTls(long long)
@ stub I_CryptGetDefaultCryptProv
@ stub I_CryptGetDefaultCryptProvForEncrypt
...
...
This diff is collapsed.
Click to expand it.
dlls/crypt32/main.c
+
51
−
13
View file @
43d85553
...
...
@@ -53,30 +53,37 @@ HCRYPTPROV CRYPT_GetDefaultProvider(void)
return
hDefProv
;
}
/* this function is called by Internet Explorer when it is about to verify a downloaded component */
BOOL
WINAPI
I_CryptCreateLruCache
(
DWORD
x
,
DWORD
y
)
typedef
void
*
HLRUCACHE
;
/* this function is called by Internet Explorer when it is about to verify a
* downloaded component. The first parameter appears to be a pointer to an
* unknown type, native fails unless it points to a buffer of at least 20 bytes.
* The second parameter appears to be an out parameter, whatever it's set to is
* passed (by cryptnet.dll) to I_CryptFlushLruCache.
*/
BOOL
WINAPI
I_CryptCreateLruCache
(
void
*
unknown
,
HLRUCACHE
*
out
)
{
FIXME
(
"stub!
\n
"
);
return
FALSE
;
FIXME
(
"(%p, %p): stub!
\n
"
,
unknown
,
out
);
*
out
=
(
void
*
)
0xbaadf00d
;
return
TRUE
;
}
/* these functions all have an unknown number of args */
BOOL
WINAPI
I_CryptFindLruEntryData
(
DWORD
x
)
BOOL
WINAPI
I_CryptFindLruEntryData
(
DWORD
unk0
,
DWORD
unk1
,
DWORD
unk2
)
{
FIXME
(
"
stub!
\n
"
);
FIXME
(
"
(%08lx, %08lx, %08lx): stub!
\n
"
,
unk0
,
unk1
,
unk2
);
return
FALSE
;
}
BOOL
WINAPI
I_CryptFlushLruCache
(
DWORD
x
)
DWORD
WINAPI
I_CryptFlushLruCache
(
HLRUCACHE
h
,
DWORD
unk0
,
DWORD
unk1
)
{
FIXME
(
"
stub!
\n
"
);
return
FALSE
;
FIXME
(
"
(%p, %08lx, %08lx): stub!
\n
"
,
h
,
unk0
,
unk1
);
return
0
;
}
BOOL
WINAPI
I_CryptFreeLruCache
(
DWORD
x
)
HLRUCACHE
WINAPI
I_CryptFreeLruCache
(
HLRUCACHE
h
,
DWORD
unk0
,
DWORD
unk1
)
{
FIXME
(
"
stub!
\n
"
);
return
FALSE
;
FIXME
(
"
(%p, %08lx, %08lx): stub!
\n
"
,
h
,
unk0
,
unk1
);
return
h
;
}
BOOL
WINAPI
CryptSIPRemoveProvider
(
GUID
*
pgProv
)
...
...
@@ -215,6 +222,37 @@ BOOL WINAPI CryptRegisterDefaultOIDFunction(DWORD dwEncodingType,
return
FALSE
;
}
BOOL
WINAPI
CryptInstallOIDFunctionAddress
(
HMODULE
hModule
,
DWORD
dwEncodingType
,
LPCSTR
pszFuncName
,
DWORD
cFuncEntry
,
const
CRYPT_OID_FUNC_ENTRY
rgFuncEntry
[],
DWORD
dwFlags
)
{
FIXME
(
"(%p, %ld, %s, %ld, %p, %08lx): stub
\n
"
,
hModule
,
dwEncodingType
,
debugstr_a
(
pszFuncName
),
cFuncEntry
,
rgFuncEntry
,
dwFlags
);
return
TRUE
;
}
BOOL
WINAPI
CryptGetOIDFunctionAddress
(
HCRYPTOIDFUNCSET
hFuncSet
,
DWORD
dwEncodingType
,
LPCSTR
pszOID
,
DWORD
dwFlags
,
void
**
ppvFuncAddr
,
HCRYPTOIDFUNCADDR
*
phFuncAddr
)
{
FIXME
(
"(%p, %ld, %s, %08lx, %p, %p): stub
\n
"
,
hFuncSet
,
dwEncodingType
,
debugstr_a
(
pszOID
),
dwFlags
,
ppvFuncAddr
,
phFuncAddr
);
return
FALSE
;
}
BOOL
WINAPI
CryptGetDefaultOIDDllList
(
HCRYPTOIDFUNCSET
hFuncSet
,
DWORD
dwEncodingType
,
LPWSTR
pwszDllList
,
DWORD
*
pcchDllList
)
{
FIXME
(
"(%p, %ld, %p, %p): stub
\n
"
,
hFuncSet
,
dwEncodingType
,
pwszDllList
,
pcchDllList
);
if
(
*
pcchDllList
)
*
pwszDllList
=
'\0'
;
*
pcchDllList
=
1
;
return
TRUE
;
}
struct
OIDToAlgID
{
LPCSTR
oid
;
...
...
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