mscoree: Add StrongNameTokenFromAssembly stub.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53296
This commit is contained in:
parent
1de01fcaa6
commit
7e60043fa2
4 changed files with 9 additions and 2 deletions
|
@ -108,7 +108,7 @@
|
|||
@ stdcall StrongNameSignatureVerification(wstr long ptr)
|
||||
@ stdcall StrongNameSignatureVerificationEx(wstr long ptr)
|
||||
@ stub StrongNameSignatureVerificationFromImage
|
||||
@ stub StrongNameTokenFromAssembly
|
||||
@ stdcall StrongNameTokenFromAssembly(wstr ptr ptr)
|
||||
@ stub StrongNameTokenFromAssemblyEx
|
||||
@ stub StrongNameTokenFromPublicKey
|
||||
@ stub TranslateSecurityAttributes
|
||||
|
|
|
@ -625,6 +625,12 @@ BOOLEAN WINAPI StrongNameSignatureVerificationEx(LPCWSTR filename, BOOLEAN force
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
BOOLEAN WINAPI StrongNameTokenFromAssembly(LPCWSTR path, BYTE **token, ULONG *size)
|
||||
{
|
||||
FIXME("(%s, %p, %p): stub\n", debugstr_w(path), token, size);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
HRESULT WINAPI CreateDebuggingInterfaceFromVersion(int nDebugVersion, LPCWSTR version, IUnknown **ppv)
|
||||
{
|
||||
static const WCHAR v2_0[] = {'v','2','.','0','.','5','0','7','2','7',0};
|
||||
|
|
|
@ -101,7 +101,7 @@
|
|||
@ stdcall StrongNameSignatureVerification(wstr long ptr) mscoree.StrongNameSignatureVerification
|
||||
@ stdcall StrongNameSignatureVerificationEx(wstr long ptr) mscoree.StrongNameSignatureVerificationEx
|
||||
@ stub StrongNameSignatureVerificationFromImage
|
||||
@ stub StrongNameTokenFromAssembly
|
||||
@ stdcall StrongNameTokenFromAssembly(wstr ptr ptr) mscoree.StrongNameTokenFromAssembly
|
||||
@ stub StrongNameTokenFromAssemblyEx
|
||||
@ stub StrongNameTokenFromPublicKey
|
||||
@ stub TranslateSecurityAttributes
|
||||
|
|
|
@ -35,5 +35,6 @@
|
|||
|
||||
BOOLEAN __stdcall StrongNameSignatureVerification(const WCHAR *path, DWORD flags, DWORD *ret_flags);
|
||||
BOOLEAN __stdcall StrongNameSignatureVerificationEx(const WCHAR *path, BOOLEAN force, BOOLEAN *verified);
|
||||
BOOLEAN __stdcall StrongNameTokenFromAssembly(const WCHAR *path, BYTE **token, ULONG *size);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue