Commit 7e60043f authored by Mohamad Al-Jaf's avatar Mohamad Al-Jaf Committed by Alexandre Julliard

mscoree: Add StrongNameTokenFromAssembly stub.

parent 1de01fca
...@@ -108,7 +108,7 @@ ...@@ -108,7 +108,7 @@
@ stdcall StrongNameSignatureVerification(wstr long ptr) @ stdcall StrongNameSignatureVerification(wstr long ptr)
@ stdcall StrongNameSignatureVerificationEx(wstr long ptr) @ stdcall StrongNameSignatureVerificationEx(wstr long ptr)
@ stub StrongNameSignatureVerificationFromImage @ stub StrongNameSignatureVerificationFromImage
@ stub StrongNameTokenFromAssembly @ stdcall StrongNameTokenFromAssembly(wstr ptr ptr)
@ stub StrongNameTokenFromAssemblyEx @ stub StrongNameTokenFromAssemblyEx
@ stub StrongNameTokenFromPublicKey @ stub StrongNameTokenFromPublicKey
@ stub TranslateSecurityAttributes @ stub TranslateSecurityAttributes
......
...@@ -625,6 +625,12 @@ BOOLEAN WINAPI StrongNameSignatureVerificationEx(LPCWSTR filename, BOOLEAN force ...@@ -625,6 +625,12 @@ BOOLEAN WINAPI StrongNameSignatureVerificationEx(LPCWSTR filename, BOOLEAN force
return TRUE; 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) HRESULT WINAPI CreateDebuggingInterfaceFromVersion(int nDebugVersion, LPCWSTR version, IUnknown **ppv)
{ {
static const WCHAR v2_0[] = {'v','2','.','0','.','5','0','7','2','7',0}; static const WCHAR v2_0[] = {'v','2','.','0','.','5','0','7','2','7',0};
......
...@@ -101,7 +101,7 @@ ...@@ -101,7 +101,7 @@
@ stdcall StrongNameSignatureVerification(wstr long ptr) mscoree.StrongNameSignatureVerification @ stdcall StrongNameSignatureVerification(wstr long ptr) mscoree.StrongNameSignatureVerification
@ stdcall StrongNameSignatureVerificationEx(wstr long ptr) mscoree.StrongNameSignatureVerificationEx @ stdcall StrongNameSignatureVerificationEx(wstr long ptr) mscoree.StrongNameSignatureVerificationEx
@ stub StrongNameSignatureVerificationFromImage @ stub StrongNameSignatureVerificationFromImage
@ stub StrongNameTokenFromAssembly @ stdcall StrongNameTokenFromAssembly(wstr ptr ptr) mscoree.StrongNameTokenFromAssembly
@ stub StrongNameTokenFromAssemblyEx @ stub StrongNameTokenFromAssemblyEx
@ stub StrongNameTokenFromPublicKey @ stub StrongNameTokenFromPublicKey
@ stub TranslateSecurityAttributes @ stub TranslateSecurityAttributes
......
...@@ -35,5 +35,6 @@ ...@@ -35,5 +35,6 @@
BOOLEAN __stdcall StrongNameSignatureVerification(const WCHAR *path, DWORD flags, DWORD *ret_flags); BOOLEAN __stdcall StrongNameSignatureVerification(const WCHAR *path, DWORD flags, DWORD *ret_flags);
BOOLEAN __stdcall StrongNameSignatureVerificationEx(const WCHAR *path, BOOLEAN force, BOOLEAN *verified); BOOLEAN __stdcall StrongNameSignatureVerificationEx(const WCHAR *path, BOOLEAN force, BOOLEAN *verified);
BOOLEAN __stdcall StrongNameTokenFromAssembly(const WCHAR *path, BYTE **token, ULONG *size);
#endif #endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment