Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
37df23db
Commit
37df23db
authored
Nov 01, 2006
by
Louis Lenders
Committed by
Alexandre Julliard
Nov 03, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscoree: Add a few more stubs.
parent
2765df9f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
3 deletions
+24
-3
mscoree.spec
dlls/mscoree/mscoree.spec
+3
-3
mscoree_main.c
dlls/mscoree/mscoree_main.c
+21
-0
No files found.
dlls/mscoree/mscoree.spec
View file @
37df23db
...
...
@@ -9,7 +9,7 @@
@ stub CloseCtrs
@ stub ClrCreateManagedInstance
@ stub CoEEShutDownCOM
@ st
ub CoInitializeCor
@ st
dcall CoInitializeCor(long)
@ stub CoInitializeEE
@ stub CoUninitializeCor
@ stub CoUninitializeEE
...
...
@@ -36,7 +36,7 @@
@ stub EEDllGetClassObjectFromClass
@ stub EEDllRegisterServer
@ stub EEDllUnregisterServer
@ st
ub GetAssemblyMDImport
@ st
dcall GetAssemblyMDImport(ptr ptr ptr)
@ stub GetCORRequiredVersion
@ stub GetCORRootDirectory
@ stub GetCORSystemDirectory
...
...
@@ -67,7 +67,7 @@
@ stub GetXMLElement
@ stub GetXMLElementAttribute
@ stub GetXMLObject
@ st
ub LoadLibraryShim
@ st
dcall LoadLibraryShim(ptr ptr ptr ptr)
@ stub LoadLibraryWithPolicyShim
@ stub LoadStringRCEx
@ stub LockClrVersion
...
...
dlls/mscoree/mscoree_main.c
View file @
37df23db
...
...
@@ -23,6 +23,8 @@
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "wine/debug.h"
...
...
@@ -115,3 +117,22 @@ HRESULT WINAPI GetCORVersion(LPWSTR pbuffer, DWORD cchBuffer, DWORD *dwLength)
return
S_OK
;
}
HRESULT
WINAPI
LoadLibraryShim
(
LPCWSTR
szDllName
,
LPCWSTR
szVersion
,
LPVOID
pvReserved
,
HMODULE
*
phModDll
)
{
*
phModDll
=
LoadLibraryW
(
szDllName
);
FIXME
(
"(%p %s, %p, %p, %p): semi-stub
\n
"
,
szDllName
,
debugstr_w
(
szDllName
),
szVersion
,
pvReserved
,
phModDll
);
return
S_OK
;
}
HRESULT
WINAPI
CoInitializeCor
(
DWORD
fFlags
)
{
FIXME
(
"(0x%08x): stub
\n
"
,
fFlags
);
return
S_OK
;
}
HRESULT
WINAPI
GetAssemblyMDImport
(
LPCWSTR
szFileName
,
REFIID
riid
,
IUnknown
**
ppIUnk
)
{
FIXME
(
"(%p %s, %p, %p): stub
\n
"
,
szFileName
,
debugstr_w
(
szFileName
),
riid
,
*
ppIUnk
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
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