ReactOS 0.4.15-dev-7834-g00c4b3d
mscoree.c
Go to the documentation of this file.
1/*
2 * Copyright 2010 Louis Lenders
3 * Copyright 2011 André Hentschel
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18 */
19
20#define COBJMACROS
21
22#include "corerror.h"
23#include "mscoree.h"
24#include "shlwapi.h"
25#include "wine/test.h"
26
28
29static HRESULT (WINAPI *pGetCORVersion)(LPWSTR, DWORD, DWORD*);
30static HRESULT (WINAPI *pGetCORSystemDirectory)(LPWSTR, DWORD, DWORD*);
31static HRESULT (WINAPI *pGetRequestedRuntimeInfo)(LPCWSTR, LPCWSTR, LPCWSTR, DWORD, DWORD, LPWSTR, DWORD, DWORD*, LPWSTR, DWORD, DWORD*);
32static HRESULT (WINAPI *pLoadLibraryShim)(LPCWSTR, LPCWSTR, LPVOID, HMODULE*);
33static HRESULT (WINAPI *pCreateConfigStream)(LPCWSTR, IStream**);
34
36{
37 hmscoree = LoadLibraryA("mscoree.dll");
38
39 if (!hmscoree)
40 {
41 win_skip("mscoree.dll not available\n");
42 return FALSE;
43 }
44
45 pGetCORVersion = (void *)GetProcAddress(hmscoree, "GetCORVersion");
46 pGetCORSystemDirectory = (void *)GetProcAddress(hmscoree, "GetCORSystemDirectory");
47 pGetRequestedRuntimeInfo = (void *)GetProcAddress(hmscoree, "GetRequestedRuntimeInfo");
48 pLoadLibraryShim = (void *)GetProcAddress(hmscoree, "LoadLibraryShim");
49 pCreateConfigStream = (void *)GetProcAddress(hmscoree, "CreateConfigStream");
50
51 if (!pGetCORVersion || !pGetCORSystemDirectory || !pGetRequestedRuntimeInfo || !pLoadLibraryShim)
52 {
53 win_skip("functions not available\n");
55 return FALSE;
56 }
57
58 return TRUE;
59}
60
61static void test_versioninfo(void)
62{
63 const WCHAR v9_0[] = {'v','9','.','0','.','3','0','3','1','9',0};
64 const WCHAR v2_0cap[] = {'V','2','.','0','.','5','0','7','2','7',0};
65 const WCHAR v2_0[] = {'v','2','.','0','.','5','0','7','2','7',0};
66 const WCHAR v2_0_0[] = {'v','2','.','0','.','0',0};
67 const WCHAR v1_1[] = {'v','1','.','1','.','4','3','2','2',0};
68 const WCHAR v1_1_0[] = {'v','1','.','1','.','0',0};
69
73 HRESULT hr;
74
75 if (0) /* crashes on <= w2k3 */
76 {
77 hr = pGetCORVersion(NULL, MAX_PATH, &size);
78 ok(hr == E_POINTER,"GetCORVersion returned %08x\n", hr);
79 }
80
81 hr = pGetCORVersion(version, 1, &size);
83 {
84 /* FIXME: Get Mono packaged properly so we can fail here. */
85 todo_wine ok(hr == HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER),"GetCORVersion returned %08x\n", hr);
86 skip("No .NET runtimes are installed\n");
87 return;
88 }
89
90 ok(hr == HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER),"GetCORVersion returned %08x\n", hr);
91
92 hr = pGetCORVersion(version, MAX_PATH, &size);
93 ok(hr == S_OK,"GetCORVersion returned %08x\n", hr);
94
95 trace("latest installed .net runtime: %s\n", wine_dbgstr_w(version));
96
97 hr = pGetCORSystemDirectory(path, MAX_PATH , &size);
98 ok(hr == S_OK, "GetCORSystemDirectory returned %08x\n", hr);
99 /* size includes terminating null-character */
100 ok(size == (lstrlenW(path) + 1),"size is %d instead of %d\n", size, (lstrlenW(path) + 1));
101
102 path_len = size;
103
104 hr = pGetCORSystemDirectory(path, path_len-1 , &size);
105 ok(hr == HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER), "GetCORSystemDirectory returned %08x\n", hr);
106
107 if (0) /* crashes on <= w2k3 */
108 {
109 hr = pGetCORSystemDirectory(NULL, MAX_PATH , &size);
110 ok(hr == HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER), "GetCORSystemDirectory returned %08x\n", hr);
111 }
112
113 hr = pGetCORSystemDirectory(path, MAX_PATH , NULL);
114 ok(hr == E_POINTER,"GetCORSystemDirectory returned %08x\n", hr);
115
116 trace("latest installed .net installed in directory: %s\n", wine_dbgstr_w(path));
117
118 /* test GetRequestedRuntimeInfo, first get info about different versions of runtime */
119 hr = pGetRequestedRuntimeInfo( NULL, v2_0, NULL, 0, 0, path, MAX_PATH, &path_len, version, MAX_PATH, &size);
120
121 if(hr == CLR_E_SHIM_RUNTIME) return; /* skipping rest of tests on win2k as .net 2.0 not installed */
122
123 ok(hr == S_OK, "GetRequestedRuntimeInfo returned %08x\n", hr);
124 trace(" installed in directory %s is .net version %s\n", wine_dbgstr_w(path), wine_dbgstr_w(version));
125
126 hr = pGetRequestedRuntimeInfo( NULL, v1_1, NULL, 0, 0, path, MAX_PATH, &path_len, version, MAX_PATH, &size);
127 ok(hr == S_OK || hr == CLR_E_SHIM_RUNTIME /*v1_1 not installed*/, "GetRequestedRuntimeInfo returned %08x\n", hr);
128 if(hr == S_OK)
129 trace(" installed in directory %s is .net version %s\n", wine_dbgstr_w(path), wine_dbgstr_w(version));
130 /* version number NULL not allowed without RUNTIME_INFO_UPGRADE_VERSION flag */
131 hr = pGetRequestedRuntimeInfo( NULL, NULL, NULL, 0, 0, path, MAX_PATH, &path_len, version, MAX_PATH, &size);
132 ok(hr == CLR_E_SHIM_RUNTIME, "GetRequestedRuntimeInfo returned %08x\n", hr);
133 /* with RUNTIME_INFO_UPGRADE_VERSION flag and version number NULL, latest installed version is returned */
134 hr = pGetRequestedRuntimeInfo( NULL, NULL, NULL, 0, RUNTIME_INFO_UPGRADE_VERSION, path, MAX_PATH, &path_len, version, MAX_PATH, &size);
135 ok(hr == S_OK, "GetRequestedRuntimeInfo returned %08x\n", hr);
136
137 hr = pGetRequestedRuntimeInfo( NULL, v2_0, NULL, 0, 0, path, 1, &path_len, version, MAX_PATH, &size);
138 ok(hr == HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER), "GetRequestedRuntimeInfo returned %08x\n", hr);
139
140 /* if one of the buffers is NULL, the other one is still happily filled */
141 memset(version, 0, sizeof(version));
142 hr = pGetRequestedRuntimeInfo( NULL, v2_0, NULL, 0, 0, NULL, MAX_PATH, &path_len, version, MAX_PATH, &size);
143 ok(hr == S_OK, "GetRequestedRuntimeInfo returned %08x\n", hr);
144 ok(!winetest_strcmpW(version, v2_0), "version is %s , expected %s\n", wine_dbgstr_w(version), wine_dbgstr_w(v2_0));
145 /* With NULL-pointer for bufferlength, the buffer itself still gets filled with correct string */
146 memset(version, 0, sizeof(version));
147 hr = pGetRequestedRuntimeInfo( NULL, v2_0, NULL, 0, 0, path, MAX_PATH, &path_len, version, MAX_PATH, NULL);
148 ok(hr == S_OK, "GetRequestedRuntimeInfo returned %08x\n", hr);
149 ok(!winetest_strcmpW(version, v2_0), "version is %s , expected %s\n", wine_dbgstr_w(version), wine_dbgstr_w(v2_0));
150
151 memset(version, 0, sizeof(version));
152 hr = pGetRequestedRuntimeInfo( NULL, v2_0cap, NULL, 0, 0, path, MAX_PATH, &path_len, version, MAX_PATH, NULL);
153 ok(hr == S_OK, "GetRequestedRuntimeInfo returned %08x\n", hr);
154 ok(!winetest_strcmpW(version, v2_0cap), "version is %s , expected %s\n", wine_dbgstr_w(version), wine_dbgstr_w(v2_0cap));
155
156 /* Invalid Version and RUNTIME_INFO_UPGRADE_VERSION flag*/
157 memset(version, 0, sizeof(version));
158 hr = pGetRequestedRuntimeInfo( NULL, v1_1, NULL, 0, RUNTIME_INFO_UPGRADE_VERSION, path, MAX_PATH, &path_len, version, MAX_PATH, NULL);
159 ok(hr == S_OK || hr == CLR_E_SHIM_RUNTIME , "GetRequestedRuntimeInfo returned %08x\n", hr);
160 if(hr == S_OK)
161 {
162 /* .NET 1.1 may not be installed. */
164 "version is %s , expected %s or %s\n", wine_dbgstr_w(version), wine_dbgstr_w(v1_1), wine_dbgstr_w(v2_0));
165
166 }
167
168 memset(version, 0, sizeof(version));
169 hr = pGetRequestedRuntimeInfo( NULL, v9_0, NULL, 0, RUNTIME_INFO_UPGRADE_VERSION, path, MAX_PATH, &path_len, version, MAX_PATH, NULL);
170 ok(hr == CLR_E_SHIM_RUNTIME, "GetRequestedRuntimeInfo returned %08x\n", hr);
171
172 memset(version, 0, sizeof(version));
173 hr = pGetRequestedRuntimeInfo( NULL, v1_1_0, NULL, 0, 0, path, MAX_PATH, &path_len, version, MAX_PATH, NULL);
174 ok(hr == CLR_E_SHIM_RUNTIME, "GetRequestedRuntimeInfo returned %08x\n", hr);
175
176 memset(version, 0, sizeof(version));
177 hr = pGetRequestedRuntimeInfo( NULL, v1_1_0, NULL, 0, RUNTIME_INFO_UPGRADE_VERSION, path, MAX_PATH, &path_len, version, MAX_PATH, NULL);
178 ok(hr == S_OK, "GetRequestedRuntimeInfo returned %08x\n", hr);
179 ok(!winetest_strcmpW(version, v2_0), "version is %s , expected %s\n", wine_dbgstr_w(version), wine_dbgstr_w(v2_0));
180
181 memset(version, 0, sizeof(version));
182 hr = pGetRequestedRuntimeInfo( NULL, v2_0_0, NULL, 0, 0, path, MAX_PATH, &path_len, version, MAX_PATH, NULL);
183 ok(hr == CLR_E_SHIM_RUNTIME, "GetRequestedRuntimeInfo returned %08x\n", hr);
184
185 memset(version, 0, sizeof(version));
186 hr = pGetRequestedRuntimeInfo( NULL, v2_0_0, NULL, 0, RUNTIME_INFO_UPGRADE_VERSION, path, MAX_PATH, &path_len, version, MAX_PATH, NULL);
187 ok(hr == S_OK, "GetRequestedRuntimeInfo returned %08x\n", hr);
188 ok(!winetest_strcmpW(version, v2_0), "version is %s , expected %s\n", wine_dbgstr_w(version), wine_dbgstr_w(v2_0));
189}
190
191static void test_loadlibraryshim(void)
192{
193 const WCHAR v4_0[] = {'v','4','.','0','.','3','0','3','1','9',0};
194 const WCHAR v2_0[] = {'v','2','.','0','.','5','0','7','2','7',0};
195 const WCHAR v1_1[] = {'v','1','.','1','.','4','3','2','2',0};
196 const WCHAR vbogus[] = {'v','b','o','g','u','s',0};
197 const WCHAR fusion[] = {'f','u','s','i','o','n',0};
198 const WCHAR fusiondll[] = {'f','u','s','i','o','n','.','d','l','l',0};
199 const WCHAR nosuchdll[] = {'j','n','v','n','l','.','d','l','l',0};
200 const WCHAR gdidll[] = {'g','d','i','3','2','.','d','l','l',0};
201 HRESULT hr;
202 const WCHAR *latest = NULL;
203 CHAR latestA[MAX_PATH];
206
207 hr = pLoadLibraryShim(fusion, v1_1, NULL, &hdll);
208 ok(hr == S_OK || hr == E_HANDLE, "LoadLibraryShim failed, hr=%x\n", hr);
209 if (SUCCEEDED(hr))
210 {
211 latest = v1_1;
212
214
215 todo_wine ok(StrStrIA(dllpath, "v1.1.4322") != 0, "incorrect fusion.dll path %s\n", dllpath);
216 ok(StrStrIA(dllpath, "fusion.dll") != 0, "incorrect fusion.dll path %s\n", dllpath);
217
219 }
220
221 hr = pLoadLibraryShim(fusion, v2_0, NULL, &hdll);
222 ok(hr == S_OK || hr == E_HANDLE, "LoadLibraryShim failed, hr=%x\n", hr);
223 if (SUCCEEDED(hr))
224 {
225 latest = v2_0;
226
228
229 todo_wine ok(StrStrIA(dllpath, "v2.0.50727") != 0, "incorrect fusion.dll path %s\n", dllpath);
230 ok(StrStrIA(dllpath, "fusion.dll") != 0, "incorrect fusion.dll path %s\n", dllpath);
231
233 }
234
235 hr = pLoadLibraryShim(fusion, v4_0, NULL, &hdll);
236 ok(hr == S_OK || hr == E_HANDLE, "LoadLibraryShim failed, hr=%x\n", hr);
237 if (SUCCEEDED(hr))
238 {
239 /* LoadLibraryShim with a NULL version prefers 2.0 and earlier */
240 if (!latest)
241 latest = v4_0;
242
244
245 todo_wine ok(StrStrIA(dllpath, "v4.0.30319") != 0, "incorrect fusion.dll path %s\n", dllpath);
246 ok(StrStrIA(dllpath, "fusion.dll") != 0, "incorrect fusion.dll path %s\n", dllpath);
247
249 }
250
251 hr = pLoadLibraryShim(fusion, vbogus, NULL, &hdll);
252 todo_wine ok(hr == E_HANDLE, "LoadLibraryShim failed, hr=%x\n", hr);
253 if (SUCCEEDED(hr))
255
256 WideCharToMultiByte(CP_ACP, 0, latest, -1, latestA, MAX_PATH, NULL, NULL);
257
258 hr = pLoadLibraryShim(fusion, NULL, NULL, &hdll);
259 ok(hr == S_OK, "LoadLibraryShim failed, hr=%x\n", hr);
260 if (SUCCEEDED(hr))
261 {
263
264 if (latest)
265 todo_wine ok(StrStrIA(dllpath, latestA) != 0, "incorrect fusion.dll path %s\n", dllpath);
266 ok(StrStrIA(dllpath, "fusion.dll") != 0, "incorrect fusion.dll path %s\n", dllpath);
267
269 }
270
271 hr = pLoadLibraryShim(fusiondll, NULL, NULL, &hdll);
272 ok(hr == S_OK, "LoadLibraryShim failed, hr=%x\n", hr);
273 if (SUCCEEDED(hr))
274 {
276
277 if (latest)
278 todo_wine ok(StrStrIA(dllpath, latestA) != 0, "incorrect fusion.dll path %s\n", dllpath);
279 ok(StrStrIA(dllpath, "fusion.dll") != 0, "incorrect fusion.dll path %s\n", dllpath);
280
282 }
283
284 hr = pLoadLibraryShim(nosuchdll, latest, NULL, &hdll);
285 ok(hr == E_HANDLE, "LoadLibraryShim failed, hr=%x\n", hr);
286 if (SUCCEEDED(hr))
288
289 hr = pLoadLibraryShim(gdidll, latest, NULL, &hdll);
290 todo_wine ok(hr == E_HANDLE, "LoadLibraryShim failed, hr=%x\n", hr);
291 if (SUCCEEDED(hr))
293}
294
295static const char xmldata[] =
296 "<?xml version=\"1.0\" ?>\n"
297 "<!DOCTYPE Config>\n"
298 "<Configuration>\n"
299 " <Name>Test</Name>\n"
300 " <Value>1234</Value>\n"
301 "</Configuration>";
302
304{
305 DWORD dwNumberOfBytesWritten;
308 ok(hfile != INVALID_HANDLE_VALUE, "File creation failed\n");
309 WriteFile(hfile, xmldata, sizeof(xmldata) - 1, &dwNumberOfBytesWritten, NULL);
310 CloseHandle(hfile);
311}
312
313static void test_createconfigstream(void)
314{
316 WCHAR file[] = {'c', 'o', 'n', 'f', '.', 'x', 'm', 'l', 0};
317 WCHAR nonexistent[] = {'n', 'o', 'n', 'e', 'x', 'i', 's', 't', '.', 'x', 'm', 'l', 0};
319 HRESULT hr;
320 char buffer[256] = {0};
321
322 if (!pCreateConfigStream)
323 {
324 win_skip("CreateConfigStream not available\n");
325 return;
326 }
327
330
331 hr = pCreateConfigStream(NULL, &stream);
332 todo_wine ok(hr == E_FAIL ||
333 broken(hr == HRESULT_FROM_WIN32(ERROR_PROC_NOT_FOUND)) || /* some WinXP, Win2K3 and Win7 */
334 broken(hr == S_OK && !stream), /* some Win2K3 */
335 "CreateConfigStream returned %x\n", hr);
336
337 hr = pCreateConfigStream(path, NULL);
338 todo_wine ok(hr == COR_E_NULLREFERENCE, "CreateConfigStream returned %x\n", hr);
339
340 hr = pCreateConfigStream(NULL, NULL);
341 todo_wine ok(hr == COR_E_NULLREFERENCE, "CreateConfigStream returned %x\n", hr);
342
343 hr = pCreateConfigStream(nonexistent, &stream);
344 todo_wine ok(hr == COR_E_FILENOTFOUND, "CreateConfigStream returned %x\n", hr);
345 ok(stream == NULL, "Expected stream to be NULL\n");
346
347 hr = pCreateConfigStream(path, &stream);
348 todo_wine ok(hr == S_OK, "CreateConfigStream failed, hr=%x\n", hr);
349 todo_wine ok(stream != NULL, "Expected non-NULL stream\n");
350
351 if (stream)
352 {
353 DWORD count;
356 IStream *stream2 = NULL;
357
358 hr = IStream_Read(stream, buffer, strlen(xmldata), &count);
359 ok(hr == S_OK, "IStream_Read failed, hr=%x\n", hr);
360 ok(count == strlen(xmldata), "wrong count: %u\n", count);
361 ok(!strcmp(buffer, xmldata), "Strings do not match\n");
362
363 hr = IStream_Write(stream, xmldata, strlen(xmldata), &count);
364 ok(hr == E_FAIL, "IStream_Write returned hr=%x\n", hr);
365
366 pos.QuadPart = strlen(xmldata);
367 hr = IStream_Seek(stream, pos, STREAM_SEEK_SET, NULL);
368 ok(hr == E_NOTIMPL, "IStream_Seek returned hr=%x\n", hr);
369
370 size.QuadPart = strlen(xmldata);
371 hr = IStream_SetSize(stream, size);
372 ok(hr == E_NOTIMPL, "IStream_SetSize returned hr=%x\n", hr);
373
374 hr = IStream_Clone(stream, &stream2);
375 ok(hr == E_NOTIMPL, "IStream_Clone returned hr=%x\n", hr);
376
377 hr = IStream_Commit(stream, STGC_DEFAULT);
378 ok(hr == E_NOTIMPL, "IStream_Commit returned hr=%x\n", hr);
379
380 hr = IStream_Revert(stream);
381 ok(hr == E_NOTIMPL, "IStream_Revert returned hr=%x\n", hr);
382
383 hr = IStream_Release(stream);
384 ok(hr == S_OK, "IStream_Release returned hr=%x\n", hr);
385 }
387}
388
390{
392 return;
393
397
399}
#define broken(x)
Definition: _sntprintf.h:21
int strcmp(const char *String1, const char *String2)
Definition: utclib.c:469
ACPI_SIZE strlen(const char *String)
Definition: utclib.c:269
#define trace
Definition: atltest.h:70
#define ok(value,...)
Definition: atltest.h:57
#define skip(...)
Definition: atltest.h:64
#define START_TEST(x)
Definition: atltest.h:75
#define CLR_E_SHIM_RUNTIME
Definition: corerror.h:127
#define COR_E_FILENOTFOUND
Definition: corerror.h:42
#define COR_E_NULLREFERENCE
Definition: corerror.h:35
#define ERROR_INSUFFICIENT_BUFFER
Definition: dderror.h:10
#define E_NOTIMPL
Definition: ddrawi.h:99
#define E_FAIL
Definition: ddrawi.h:102
static IUnknown **const WCHAR v2_0[]
Definition: debugging.c:37
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
LPSTR WINAPI StrStrIA(LPCSTR lpszStr, LPCSTR lpszSearch)
Definition: string.c:355
#define CloseHandle
Definition: compat.h:739
#define CP_ACP
Definition: compat.h:109
#define GetProcAddress(x, y)
Definition: compat.h:753
#define INVALID_HANDLE_VALUE
Definition: compat.h:731
#define FreeLibrary(x)
Definition: compat.h:748
#define MAX_PATH
Definition: compat.h:34
#define CreateFileW
Definition: compat.h:741
#define FILE_ATTRIBUTE_NORMAL
Definition: compat.h:137
#define WideCharToMultiByte
Definition: compat.h:111
#define lstrlenW
Definition: compat.h:750
static const WCHAR version[]
Definition: asmname.c:66
BOOL WINAPI DeleteFileW(IN LPCWSTR lpFileName)
Definition: delete.c:39
BOOL WINAPI WriteFile(IN HANDLE hFile, IN LPCVOID lpBuffer, IN DWORD nNumberOfBytesToWrite OPTIONAL, OUT LPDWORD lpNumberOfBytesWritten, IN LPOVERLAPPED lpOverlapped OPTIONAL)
Definition: rw.c:24
HINSTANCE WINAPI DECLSPEC_HOTPATCH LoadLibraryA(LPCSTR lpLibFileName)
Definition: loader.c:111
DWORD WINAPI GetModuleFileNameA(HINSTANCE hModule, LPSTR lpFilename, DWORD nSize)
Definition: loader.c:539
DWORD WINAPI GetFullPathNameW(IN LPCWSTR lpFileName, IN DWORD nBufferLength, OUT LPWSTR lpBuffer, OUT LPWSTR *lpFilePart)
Definition: path.c:1106
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
GLuint GLuint GLsizei count
Definition: gl.h:1545
GLsizeiptr size
Definition: glext.h:5919
GLuint buffer
Definition: glext.h:5915
#define S_OK
Definition: intsafe.h:52
#define SUCCEEDED(hr)
Definition: intsafe.h:50
const char * filename
Definition: ioapi.h:137
#define wine_dbgstr_w
Definition: kernel32.h:34
WCHAR dllpath[MAX_PATH]
#define CREATE_ALWAYS
Definition: disk.h:72
static DWORD path_len
Definition: batch.c:31
static const WCHAR nonexistent[]
Definition: font.c:33
#define todo_wine
Definition: custom.c:79
static DWORD *static DWORD *static DWORD DWORD *static HMODULE *static IStream **static BOOL init_functionpointers(void)
Definition: mscoree.c:35
static const char xmldata[]
Definition: mscoree.c:295
static void test_createconfigstream(void)
Definition: mscoree.c:313
static DWORD *static DWORD *static LPCWSTR
Definition: mscoree.c:31
static void create_xml_file(LPCWSTR filename)
Definition: mscoree.c:303
static DWORD *static DWORD *static DWORD DWORD *static LPVOID
Definition: mscoree.c:32
static HMODULE hmscoree
Definition: mscoree.c:27
static DWORD
Definition: mscoree.c:29
static void test_versioninfo(void)
Definition: mscoree.c:61
static DWORD *static DWORD *static LPWSTR
Definition: mscoree.c:31
static void test_loadlibraryshim(void)
Definition: mscoree.c:191
@ RUNTIME_INFO_UPGRADE_VERSION
Definition: mscoree.idl:40
#define GENERIC_WRITE
Definition: nt_native.h:90
#define win_skip
Definition: test.h:160
static int winetest_strcmpW(const WCHAR *str1, const WCHAR *str2)
Definition: test.h:94
#define memset(x, y, z)
Definition: compat.h:39
static PVOID hdll
Definition: shimdbg.c:126
HRESULT hr
Definition: shlfolder.c:183
Definition: fci.c:127
Definition: parse.h:23
#define HRESULT
Definition: msvc.h:7
#define WINAPI
Definition: msvc.h:6
#define E_HANDLE
Definition: winerror.h:2850
#define HRESULT_FROM_WIN32(x)
Definition: winerror.h:92
#define ERROR_PROC_NOT_FOUND
Definition: winerror.h:199
#define E_POINTER
Definition: winerror.h:2365
__wchar_t WCHAR
Definition: xmlstorage.h:180
const WCHAR * LPCWSTR
Definition: xmlstorage.h:185
char CHAR
Definition: xmlstorage.h:175