mscoree: Add stub implementations of CorBindToRuntimeHost and GetCORVersion.
[wine] / dlls / mscoree / mscoree_main.c
1 /*
2  * Implementation of mscoree.dll
3  * Microsoft Component Object Runtime Execution Engine
4  *
5  * Copyright 2006 Paul Chitescu
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22 #include <stdarg.h>
23
24 #include "windef.h"
25 #include "winbase.h"
26
27 #include "wine/debug.h"
28
29 WINE_DEFAULT_DEBUG_CHANNEL( mscoree );
30
31 HRESULT WINAPI CorBindToRuntimeHost(LPCWSTR pwszVersion, LPCWSTR pwszBuildFlavor,
32                                     LPCWSTR pwszHostConfigFile, VOID *pReserved,
33                                     DWORD startupFlags, REFCLSID rclsid,
34                                     REFIID riid, LPVOID *ppv)
35 {
36     FIXME("(%s, %s, %s, %p, %d, %p, %p, %p): stub!\n", debugstr_w(pwszVersion),
37           debugstr_w(pwszBuildFlavor), debugstr_w(pwszHostConfigFile), pReserved,
38           startupFlags, rclsid, riid, ppv);
39
40     return E_FAIL;
41 }
42
43 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
44 {
45     TRACE("(%p, %d, %p)\n", hinstDLL, fdwReason, lpvReserved);
46
47     switch (fdwReason)
48     {
49     case DLL_WINE_PREATTACH:
50         return FALSE;  /* prefer native version */
51     case DLL_PROCESS_ATTACH:
52         DisableThreadLibraryCalls(hinstDLL);
53         break;
54     case DLL_PROCESS_DETACH:
55         break;
56     }
57     return TRUE;
58 }
59
60 BOOL WINAPI _CorDllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
61 {
62     FIXME("(%p, %d, %p): stub\n", hinstDLL, fdwReason, lpvReserved);
63
64     switch (fdwReason)
65     {
66     case DLL_PROCESS_ATTACH:
67         DisableThreadLibraryCalls(hinstDLL);
68         break;
69     case DLL_PROCESS_DETACH:
70         break;
71     }
72     return TRUE;
73 }
74
75 int WINAPI _CorExeMain(void)
76 {
77     FIXME("Directly running .NET applications not supported.\n");
78     return -1;
79 }
80
81 int WINAPI _CorExeMain2(PBYTE ptrMemory, DWORD cntMemory, LPCWSTR imageName, LPCWSTR loaderName, LPCWSTR cmdLine)
82 {
83     TRACE("(%p, %u, %s, %s, %s)\n", ptrMemory, cntMemory, debugstr_w(imageName), debugstr_w(loaderName), debugstr_w(cmdLine));
84     FIXME("Directly running .NET applications not supported.\n");
85     return -1;
86 }
87
88 void WINAPI _CorImageUnloading(LPCVOID* imageBase)
89 {
90     TRACE("(%p): stub\n", imageBase);
91 }
92
93 DWORD _CorValidateImage(LPCVOID* imageBase, LPCWSTR imageName)
94 {
95     TRACE("(%p, %s): stub\n", imageBase, debugstr_w(imageName));
96     return E_FAIL;
97 }
98
99 HRESULT WINAPI GetCORVersion(LPWSTR pbuffer, DWORD cchBuffer, DWORD *dwLength)
100 {
101     static const WCHAR version[] = {'1','.','1','.','4','3','2','2',0};
102
103     FIXME("(%p, %d, %p): semi-stub!\n", pbuffer, cchBuffer, dwLength);
104
105     if (!dwLength)
106         return E_POINTER;
107
108     *dwLength = lstrlenW(version);
109
110     if (cchBuffer < *dwLength)
111         return ERROR_INSUFFICIENT_BUFFER;
112
113     if (pbuffer)
114         lstrcpyW(pbuffer, version);
115
116     return S_OK;
117 }