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
1e48e160
Commit
1e48e160
authored
Apr 29, 2009
by
Paul Chitescu
Committed by
Alexandre Julliard
Apr 29, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscoree: Stubs for StrongNameSignatureVerification(Ex).
parent
a429ce00
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
mscoree.spec
dlls/mscoree/mscoree.spec
+2
-2
mscoree_main.c
dlls/mscoree/mscoree_main.c
+12
-0
No files found.
dlls/mscoree/mscoree.spec
View file @
1e48e160
...
...
@@ -103,8 +103,8 @@
@ stub StrongNameSignatureGeneration
@ stub StrongNameSignatureGenerationEx
@ stub StrongNameSignatureSize
@ st
ub StrongNameSignatureVerification
@ st
ub StrongNameSignatureVerificationEx
@ st
dcall StrongNameSignatureVerification(wstr long ptr)
@ st
dcall StrongNameSignatureVerificationEx(wstr long ptr)
@ stub StrongNameSignatureVerificationFromImage
@ stub StrongNameTokenFromAssembly
@ stub StrongNameTokenFromAssemblyEx
...
...
dlls/mscoree/mscoree_main.c
View file @
1e48e160
...
...
@@ -324,6 +324,18 @@ HRESULT WINAPI CorBindToCurrentRuntime(LPCWSTR filename, REFCLSID rclsid, REFIID
return
E_NOTIMPL
;
}
BOOL
WINAPI
StrongNameSignatureVerification
(
LPCWSTR
filename
,
DWORD
inFlags
,
DWORD
*
pOutFlags
)
{
FIXME
(
"(%s, 0x%X, %p): stub
\n
"
,
debugstr_w
(
filename
),
inFlags
,
pOutFlags
);
return
FALSE
;
}
BOOL
WINAPI
StrongNameSignatureVerificationEx
(
LPCWSTR
filename
,
BOOL
forceVerification
,
BOOL
*
pVerified
)
{
FIXME
(
"(%s, %u, %p): stub
\n
"
,
debugstr_w
(
filename
),
forceVerification
,
pVerified
);
return
FALSE
;
}
HRESULT
WINAPI
DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
riid
,
LPVOID
*
ppv
)
{
FIXME
(
"(%p, %p, %p): stub
\n
"
,
rclsid
,
riid
,
ppv
);
...
...
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