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
bc1acbf3
Commit
bc1acbf3
authored
Mar 25, 2010
by
Vincent Povirk
Committed by
Alexandre Julliard
Mar 26, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscoree: Show the names of requested GUIDs in stub fixmes.
parent
f74de3ab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
mscoree_main.c
dlls/mscoree/mscoree_main.c
+4
-4
No files found.
dlls/mscoree/mscoree_main.c
View file @
bc1acbf3
...
...
@@ -91,9 +91,9 @@ HRESULT WINAPI CorBindToRuntimeHost(LPCWSTR pwszVersion, LPCWSTR pwszBuildFlavor
{
WCHAR
*
mono_exe
;
FIXME
(
"(%s, %s, %s, %p, %d, %
p, %p
, %p): semi-stub!
\n
"
,
debugstr_w
(
pwszVersion
),
FIXME
(
"(%s, %s, %s, %p, %d, %
s, %s
, %p): semi-stub!
\n
"
,
debugstr_w
(
pwszVersion
),
debugstr_w
(
pwszBuildFlavor
),
debugstr_w
(
pwszHostConfigFile
),
pReserved
,
startupFlags
,
rclsid
,
riid
,
ppv
);
startupFlags
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
riid
)
,
ppv
);
if
(
!
(
mono_exe
=
get_mono_exe
()))
{
...
...
@@ -290,7 +290,7 @@ HRESULT WINAPI CoInitializeCor(DWORD fFlags)
HRESULT
WINAPI
GetAssemblyMDImport
(
LPCWSTR
szFileName
,
REFIID
riid
,
IUnknown
**
ppIUnk
)
{
FIXME
(
"(%p %s, %
p, %p): stub
\n
"
,
szFileName
,
debugstr_w
(
szFileName
),
riid
,
*
ppIUnk
);
FIXME
(
"(%p %s, %
s, %p): stub
\n
"
,
szFileName
,
debugstr_w
(
szFileName
),
debugstr_guid
(
riid
)
,
*
ppIUnk
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
...
...
@@ -357,7 +357,7 @@ BOOL WINAPI StrongNameSignatureVerificationEx(LPCWSTR filename, BOOL forceVerifi
HRESULT
WINAPI
DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
riid
,
LPVOID
*
ppv
)
{
FIXME
(
"(%
p, %p, %p): stub
\n
"
,
rclsid
,
riid
,
ppv
);
FIXME
(
"(%
s, %s, %p): stub
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
riid
)
,
ppv
);
if
(
!
ppv
)
return
E_INVALIDARG
;
...
...
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