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
077b4024
Commit
077b4024
authored
Dec 18, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Dec 22, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscoree: Add a stub for GetCORSystemDirectory.
parent
efb1e8eb
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 @
077b4024
...
...
@@ -39,8 +39,8 @@
@ stdcall GetAssemblyMDImport(ptr ptr ptr)
@ stub GetCORRequiredVersion
@ stub GetCORRootDirectory
@ st
ub GetCORSystemDirectory
@ stdcall GetCORVersion(
ws
tr long ptr)
@ st
dcall GetCORSystemDirectory(ptr long ptr)
@ stdcall GetCORVersion(
p
tr long ptr)
@ stub GetCompileInfo
@ stub GetFileVersion
@ stub GetHashFromAssemblyFile
...
...
dlls/mscoree/mscoree_main.c
View file @
077b4024
...
...
@@ -192,6 +192,18 @@ DWORD _CorValidateImage(LPCVOID* imageBase, LPCWSTR imageName)
return
E_FAIL
;
}
HRESULT
WINAPI
GetCORSystemDirectory
(
LPWSTR
pbuffer
,
DWORD
cchBuffer
,
DWORD
*
dwLength
)
{
FIXME
(
"(%p, %d, %p): stub!
\n
"
,
pbuffer
,
cchBuffer
,
dwLength
);
if
(
!
dwLength
)
return
E_POINTER
;
*
dwLength
=
0
;
return
S_OK
;
}
HRESULT
WINAPI
GetCORVersion
(
LPWSTR
pbuffer
,
DWORD
cchBuffer
,
DWORD
*
dwLength
)
{
static
const
WCHAR
version
[]
=
{
'v'
,
'1'
,
'.'
,
'1'
,
'.'
,
'4'
,
'3'
,
'2'
,
'2'
,
0
};
...
...
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