mscoree: Add stub implementation of ICLRMetaHost.
[wine] / dlls / mscoree / metahost.c
1 /*
2  * ICLRMetaHost - discovery and management of available .NET runtimes
3  *
4  * Copyright 2010 Vincent Povirk for CodeWeavers
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #include <stdarg.h>
22
23 #define COBJMACROS
24
25 #include "wine/unicode.h"
26 #include "wine/library.h"
27 #include "windef.h"
28 #include "winbase.h"
29 #include "ole2.h"
30
31 #include "mscoree.h"
32 #include "metahost.h"
33 #include "mscoree_private.h"
34
35 #include "wine/debug.h"
36
37 WINE_DEFAULT_DEBUG_CHANNEL( mscoree );
38
39 struct CLRMetaHost
40 {
41     const struct ICLRMetaHostVtbl *CLRMetaHost_vtbl;
42 };
43
44 static const struct CLRMetaHost GlobalCLRMetaHost;
45
46 static HRESULT WINAPI CLRMetaHost_QueryInterface(ICLRMetaHost* iface,
47         REFIID riid,
48         void **ppvObject)
49 {
50     TRACE("%s %p\n", debugstr_guid(riid), ppvObject);
51
52     if ( IsEqualGUID( riid, &IID_ICLRMetaHost ) ||
53          IsEqualGUID( riid, &IID_IUnknown ) )
54     {
55         *ppvObject = iface;
56     }
57     else
58     {
59         FIXME("Unsupported interface %s\n", debugstr_guid(riid));
60         return E_NOINTERFACE;
61     }
62
63     ICLRMetaHost_AddRef( iface );
64
65     return S_OK;
66 }
67
68 static ULONG WINAPI CLRMetaHost_AddRef(ICLRMetaHost* iface)
69 {
70     return 2;
71 }
72
73 static ULONG WINAPI CLRMetaHost_Release(ICLRMetaHost* iface)
74 {
75     return 1;
76 }
77
78 static HRESULT WINAPI CLRMetaHost_GetRuntime(ICLRMetaHost* iface,
79     LPCWSTR pwzVersion, REFIID iid, LPVOID *ppRuntime)
80 {
81     FIXME("%s %s %p\n", debugstr_w(pwzVersion), debugstr_guid(iid), ppRuntime);
82
83     return E_NOTIMPL;
84 }
85
86 static HRESULT WINAPI CLRMetaHost_GetVersionFromFile(ICLRMetaHost* iface,
87     LPCWSTR pwzFilePath, LPWSTR pwzBuffer, DWORD *pcchBuffer)
88 {
89     FIXME("%s %p %p\n", debugstr_w(pwzFilePath), pwzBuffer, pcchBuffer);
90
91     return E_NOTIMPL;
92 }
93
94 static HRESULT WINAPI CLRMetaHost_EnumerateInstalledRuntimes(ICLRMetaHost* iface,
95     IEnumUnknown **ppEnumerator)
96 {
97     FIXME("%p\n", ppEnumerator);
98
99     return E_NOTIMPL;
100 }
101
102 static HRESULT WINAPI CLRMetaHost_EnumerateLoadedRuntimes(ICLRMetaHost* iface,
103     HANDLE hndProcess, IEnumUnknown **ppEnumerator)
104 {
105     FIXME("%p %p\n", hndProcess, ppEnumerator);
106
107     return E_NOTIMPL;
108 }
109
110 static HRESULT WINAPI CLRMetaHost_RequestRuntimeLoadedNotification(ICLRMetaHost* iface,
111     RuntimeLoadedCallbackFnPtr pCallbackFunction)
112 {
113     FIXME("%p\n", pCallbackFunction);
114
115     return E_NOTIMPL;
116 }
117
118 static HRESULT WINAPI CLRMetaHost_QueryLegacyV2RuntimeBinding(ICLRMetaHost* iface,
119     REFIID riid, LPVOID *ppUnk)
120 {
121     FIXME("%s %p\n", debugstr_guid(riid), ppUnk);
122
123     return E_NOTIMPL;
124 }
125
126 static HRESULT WINAPI CLRMetaHost_ExitProcess(ICLRMetaHost* iface, INT32 iExitCode)
127 {
128     FIXME("%i: stub\n", iExitCode);
129
130     ExitProcess(iExitCode);
131 }
132
133 static const struct ICLRMetaHostVtbl CLRMetaHost_vtbl =
134 {
135     CLRMetaHost_QueryInterface,
136     CLRMetaHost_AddRef,
137     CLRMetaHost_Release,
138     CLRMetaHost_GetRuntime,
139     CLRMetaHost_GetVersionFromFile,
140     CLRMetaHost_EnumerateInstalledRuntimes,
141     CLRMetaHost_EnumerateLoadedRuntimes,
142     CLRMetaHost_RequestRuntimeLoadedNotification,
143     CLRMetaHost_QueryLegacyV2RuntimeBinding,
144     CLRMetaHost_ExitProcess
145 };
146
147 static const struct CLRMetaHost GlobalCLRMetaHost = {
148     &CLRMetaHost_vtbl
149 };
150
151 extern HRESULT CLRMetaHost_CreateInstance(REFIID riid, void **ppobj)
152 {
153     return ICLRMetaHost_QueryInterface((ICLRMetaHost*)&GlobalCLRMetaHost, riid, ppobj);
154 }