Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
7e60043f
Commit
7e60043f
authored
Nov 10, 2022
by
Mohamad Al-Jaf
Committed by
Alexandre Julliard
Nov 14, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscoree: Add StrongNameTokenFromAssembly stub.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=53296
parent
1de01fca
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
2 deletions
+9
-2
mscoree.spec
dlls/mscoree/mscoree.spec
+1
-1
mscoree_main.c
dlls/mscoree/mscoree_main.c
+6
-0
mscorwks.spec
dlls/mscorwks/mscorwks.spec
+1
-1
strongname.h
include/strongname.h
+1
-0
No files found.
dlls/mscoree/mscoree.spec
View file @
7e60043f
...
...
@@ -108,7 +108,7 @@
@ stdcall StrongNameSignatureVerification(wstr long ptr)
@ stdcall StrongNameSignatureVerificationEx(wstr long ptr)
@ stub StrongNameSignatureVerificationFromImage
@ st
ub StrongNameTokenFromAssembly
@ st
dcall StrongNameTokenFromAssembly(wstr ptr ptr)
@ stub StrongNameTokenFromAssemblyEx
@ stub StrongNameTokenFromPublicKey
@ stub TranslateSecurityAttributes
...
...
dlls/mscoree/mscoree_main.c
View file @
7e60043f
...
...
@@ -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
};
...
...
dlls/mscorwks/mscorwks.spec
View file @
7e60043f
...
...
@@ -101,7 +101,7 @@
@ stdcall StrongNameSignatureVerification(wstr long ptr) mscoree.StrongNameSignatureVerification
@ stdcall StrongNameSignatureVerificationEx(wstr long ptr) mscoree.StrongNameSignatureVerificationEx
@ stub StrongNameSignatureVerificationFromImage
@ st
ub
StrongNameTokenFromAssembly
@ st
dcall StrongNameTokenFromAssembly(wstr ptr ptr) mscoree.
StrongNameTokenFromAssembly
@ stub StrongNameTokenFromAssemblyEx
@ stub StrongNameTokenFromPublicKey
@ stub TranslateSecurityAttributes
...
...
include/strongname.h
View file @
7e60043f
...
...
@@ -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
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