comctl32/datetime: Don't check box if no valid date set.
[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 #define COBJMACROS
25 #include "wine/unicode.h"
26 #include "wine/library.h"
27 #include "windef.h"
28 #include "winbase.h"
29 #include "winuser.h"
30 #include "winnls.h"
31 #include "winreg.h"
32 #include "ole2.h"
33 #include "ocidl.h"
34 #include "shellapi.h"
35
36 #include "initguid.h"
37 #include "msxml2.h"
38 #include "corerror.h"
39 #include "cor.h"
40 #include "mscoree.h"
41 #include "corhdr.h"
42 #include "cordebug.h"
43 #include "metahost.h"
44 #include "fusion.h"
45 #include "wine/list.h"
46 #include "mscoree_private.h"
47 #include "rpcproxy.h"
48
49 #include "wine/debug.h"
50
51 WINE_DEFAULT_DEBUG_CHANNEL( mscoree );
52
53 static HINSTANCE MSCOREE_hInstance;
54
55 typedef HRESULT (*fnCreateInstance)(REFIID riid, LPVOID *ppObj);
56
57 char *WtoA(LPCWSTR wstr)
58 {
59     int length;
60     char *result;
61
62     length = WideCharToMultiByte(CP_UTF8, 0, wstr, -1, NULL, 0, NULL, NULL);
63
64     result = HeapAlloc(GetProcessHeap(), 0, length);
65
66     if (result)
67         WideCharToMultiByte(CP_UTF8, 0, wstr, -1, result, length, NULL, NULL);
68
69     return result;
70 }
71
72 static BOOL get_install_root(LPWSTR install_dir)
73 {
74     const WCHAR dotnet_key[] = {'S','O','F','T','W','A','R','E','\\','M','i','c','r','o','s','o','f','t','\\','.','N','E','T','F','r','a','m','e','w','o','r','k','\\',0};
75     const WCHAR install_root[] = {'I','n','s','t','a','l','l','R','o','o','t',0};
76
77     DWORD len;
78     HKEY key;
79
80     if (RegOpenKeyExW(HKEY_LOCAL_MACHINE, dotnet_key, 0, KEY_READ, &key))
81         return FALSE;
82
83     len = MAX_PATH;
84     if (RegQueryValueExW(key, install_root, 0, NULL, (LPBYTE)install_dir, &len))
85     {
86         RegCloseKey(key);
87         return FALSE;
88     }
89     RegCloseKey(key);
90
91     return TRUE;
92 }
93
94 typedef struct mscorecf
95 {
96     IClassFactory    IClassFactory_iface;
97     LONG ref;
98
99     fnCreateInstance pfnCreateInstance;
100
101     CLSID clsid;
102 } mscorecf;
103
104 static inline mscorecf *impl_from_IClassFactory( IClassFactory *iface )
105 {
106     return CONTAINING_RECORD(iface, mscorecf, IClassFactory_iface);
107 }
108
109 static HRESULT WINAPI mscorecf_QueryInterface(IClassFactory *iface, REFIID riid, LPVOID *ppobj )
110 {
111     TRACE("%s %p\n", debugstr_guid(riid), ppobj);
112
113     if (IsEqualGUID(riid, &IID_IUnknown) ||
114         IsEqualGUID(riid, &IID_IClassFactory))
115     {
116         IClassFactory_AddRef( iface );
117         *ppobj = iface;
118         return S_OK;
119     }
120
121     ERR("interface %s not implemented\n", debugstr_guid(riid));
122     return E_NOINTERFACE;
123 }
124
125 static ULONG WINAPI mscorecf_AddRef(IClassFactory *iface )
126 {
127     mscorecf *This = impl_from_IClassFactory(iface);
128     ULONG ref = InterlockedIncrement(&This->ref);
129
130     TRACE("%p ref=%u\n", This, ref);
131
132     return ref;
133 }
134
135 static ULONG WINAPI mscorecf_Release(IClassFactory *iface )
136 {
137     mscorecf *This = impl_from_IClassFactory(iface);
138     ULONG ref = InterlockedDecrement(&This->ref);
139
140     TRACE("%p ref=%u\n", This, ref);
141
142     if (ref == 0)
143     {
144         HeapFree(GetProcessHeap(), 0, This);
145     }
146
147     return ref;
148 }
149
150 static HRESULT WINAPI mscorecf_CreateInstance(IClassFactory *iface,LPUNKNOWN pOuter,
151                             REFIID riid, LPVOID *ppobj )
152 {
153     mscorecf *This = impl_from_IClassFactory( iface );
154     HRESULT hr;
155     IUnknown *punk;
156
157     TRACE("%p %s %p\n", pOuter, debugstr_guid(riid), ppobj );
158
159     *ppobj = NULL;
160
161     if (pOuter)
162         return CLASS_E_NOAGGREGATION;
163
164     hr = This->pfnCreateInstance( &This->clsid, (LPVOID*) &punk );
165     if (SUCCEEDED(hr))
166     {
167         hr = IUnknown_QueryInterface( punk, riid, ppobj );
168
169         IUnknown_Release( punk );
170     }
171     else
172     {
173         WARN("Cannot create an instance object. 0x%08x\n", hr);
174     }
175     return hr;
176 }
177
178 static HRESULT WINAPI mscorecf_LockServer(IClassFactory *iface, BOOL dolock)
179 {
180     FIXME("(%p)->(%d),stub!\n",iface,dolock);
181     return S_OK;
182 }
183
184 static const struct IClassFactoryVtbl mscorecf_vtbl =
185 {
186     mscorecf_QueryInterface,
187     mscorecf_AddRef,
188     mscorecf_Release,
189     mscorecf_CreateInstance,
190     mscorecf_LockServer
191 };
192
193 HRESULT WINAPI CorBindToRuntimeHost(LPCWSTR pwszVersion, LPCWSTR pwszBuildFlavor,
194                                     LPCWSTR pwszHostConfigFile, VOID *pReserved,
195                                     DWORD startupFlags, REFCLSID rclsid,
196                                     REFIID riid, LPVOID *ppv)
197 {
198     HRESULT ret;
199     ICLRRuntimeInfo *info;
200
201     TRACE("(%s, %s, %s, %p, %d, %s, %s, %p)\n", debugstr_w(pwszVersion),
202           debugstr_w(pwszBuildFlavor), debugstr_w(pwszHostConfigFile), pReserved,
203           startupFlags, debugstr_guid(rclsid), debugstr_guid(riid), ppv);
204
205     *ppv = NULL;
206
207     ret = get_runtime_info(NULL, pwszVersion, pwszHostConfigFile, startupFlags, 0, TRUE, &info);
208
209     if (SUCCEEDED(ret))
210     {
211         ret = ICLRRuntimeInfo_GetInterface(info, rclsid, riid, ppv);
212
213         ICLRRuntimeInfo_Release(info);
214     }
215
216     return ret;
217 }
218
219 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
220 {
221     TRACE("(%p, %d, %p)\n", hinstDLL, fdwReason, lpvReserved);
222
223     MSCOREE_hInstance = hinstDLL;
224
225     switch (fdwReason)
226     {
227     case DLL_WINE_PREATTACH:
228         return FALSE;  /* prefer native version */
229     case DLL_PROCESS_ATTACH:
230         DisableThreadLibraryCalls(hinstDLL);
231         break;
232     case DLL_PROCESS_DETACH:
233         expect_no_runtimes();
234         break;
235     }
236     return TRUE;
237 }
238
239 BOOL WINAPI _CorDllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
240 {
241     FIXME("(%p, %d, %p): stub\n", hinstDLL, fdwReason, lpvReserved);
242
243     switch (fdwReason)
244     {
245     case DLL_PROCESS_ATTACH:
246         DisableThreadLibraryCalls(hinstDLL);
247         break;
248     case DLL_PROCESS_DETACH:
249         break;
250     }
251     return TRUE;
252 }
253
254 __int32 WINAPI _CorExeMain2(PBYTE ptrMemory, DWORD cntMemory, LPWSTR imageName, LPWSTR loaderName, LPWSTR cmdLine)
255 {
256     TRACE("(%p, %u, %s, %s, %s)\n", ptrMemory, cntMemory, debugstr_w(imageName), debugstr_w(loaderName), debugstr_w(cmdLine));
257     FIXME("Directly running .NET applications not supported.\n");
258     return -1;
259 }
260
261 void WINAPI CorExitProcess(int exitCode)
262 {
263     TRACE("(%x)\n", exitCode);
264     unload_all_runtimes();
265     ExitProcess(exitCode);
266 }
267
268 VOID WINAPI _CorImageUnloading(PVOID imageBase)
269 {
270     TRACE("(%p): stub\n", imageBase);
271 }
272
273 HRESULT WINAPI _CorValidateImage(PVOID* imageBase, LPCWSTR imageName)
274 {
275     TRACE("(%p, %s): stub\n", imageBase, debugstr_w(imageName));
276     return E_FAIL;
277 }
278
279 HRESULT WINAPI GetCORSystemDirectory(LPWSTR pbuffer, DWORD cchBuffer, DWORD *dwLength)
280 {
281     ICLRRuntimeInfo *info;
282     HRESULT ret;
283
284     TRACE("(%p, %d, %p)!\n", pbuffer, cchBuffer, dwLength);
285
286     if (!dwLength || !pbuffer)
287         return E_POINTER;
288
289     ret = get_runtime_info(NULL, NULL, NULL, 0, RUNTIME_INFO_UPGRADE_VERSION, TRUE, &info);
290
291     if (SUCCEEDED(ret))
292     {
293         *dwLength = cchBuffer;
294         ret = ICLRRuntimeInfo_GetRuntimeDirectory(info, pbuffer, dwLength);
295
296         ICLRRuntimeInfo_Release(info);
297     }
298
299     return ret;
300 }
301
302 HRESULT WINAPI GetCORVersion(LPWSTR pbuffer, DWORD cchBuffer, DWORD *dwLength)
303 {
304     ICLRRuntimeInfo *info;
305     HRESULT ret;
306
307     TRACE("(%p, %d, %p)!\n", pbuffer, cchBuffer, dwLength);
308
309     if (!dwLength || !pbuffer)
310         return E_POINTER;
311
312     ret = get_runtime_info(NULL, NULL, NULL, 0, RUNTIME_INFO_UPGRADE_VERSION, TRUE, &info);
313
314     if (SUCCEEDED(ret))
315     {
316         *dwLength = cchBuffer;
317         ret = ICLRRuntimeInfo_GetVersionString(info, pbuffer, dwLength);
318
319         ICLRRuntimeInfo_Release(info);
320     }
321
322     return ret;
323 }
324
325 HRESULT WINAPI GetRequestedRuntimeInfo(LPCWSTR pExe, LPCWSTR pwszVersion, LPCWSTR pConfigurationFile,
326     DWORD startupFlags, DWORD runtimeInfoFlags, LPWSTR pDirectory, DWORD dwDirectory, DWORD *dwDirectoryLength,
327     LPWSTR pVersion, DWORD cchBuffer, DWORD *dwlength)
328 {
329     HRESULT ret;
330     ICLRRuntimeInfo *info;
331     DWORD length_dummy;
332
333     TRACE("(%s, %s, %s, 0x%08x, 0x%08x, %p, 0x%08x, %p, %p, 0x%08x, %p)\n", debugstr_w(pExe),
334           debugstr_w(pwszVersion), debugstr_w(pConfigurationFile), startupFlags, runtimeInfoFlags, pDirectory,
335           dwDirectory, dwDirectoryLength, pVersion, cchBuffer, dwlength);
336
337     if (!dwDirectoryLength) dwDirectoryLength = &length_dummy;
338
339     if (!dwlength) dwlength = &length_dummy;
340
341     ret = get_runtime_info(pExe, pwszVersion, pConfigurationFile, startupFlags, runtimeInfoFlags, TRUE, &info);
342
343     if (SUCCEEDED(ret))
344     {
345         *dwlength = cchBuffer;
346         ret = ICLRRuntimeInfo_GetVersionString(info, pVersion, dwlength);
347
348         if (SUCCEEDED(ret))
349         {
350             *dwDirectoryLength = dwDirectory;
351             ret = ICLRRuntimeInfo_GetRuntimeDirectory(info, pDirectory, dwDirectoryLength);
352         }
353
354         ICLRRuntimeInfo_Release(info);
355     }
356
357     return ret;
358 }
359
360 HRESULT WINAPI GetRequestedRuntimeVersion(LPWSTR pExe, LPWSTR pVersion, DWORD cchBuffer, DWORD *dwlength)
361 {
362     TRACE("(%s, %p, %d, %p)\n", debugstr_w(pExe), debugstr_w(pExe), cchBuffer, dwlength);
363
364     if(!dwlength)
365         return E_POINTER;
366
367     return GetRequestedRuntimeInfo(pExe, NULL, NULL, 0, 0, NULL, 0, NULL, pVersion, cchBuffer, dwlength);
368 }
369
370 HRESULT WINAPI GetRealProcAddress(LPCSTR procname, void **ppv)
371 {
372     FIXME("(%s, %p)\n", debugstr_a(procname), ppv);
373     return CLR_E_SHIM_RUNTIMEEXPORT;
374 }
375
376 HRESULT WINAPI GetFileVersion(LPCWSTR szFilename, LPWSTR szBuffer, DWORD cchBuffer, DWORD *dwLength)
377 {
378     TRACE("(%s, %p, %d, %p)\n", debugstr_w(szFilename), szBuffer, cchBuffer, dwLength);
379
380     if (!szFilename || !dwLength)
381         return E_POINTER;
382
383     *dwLength = cchBuffer;
384     return CLRMetaHost_GetVersionFromFile(0, szFilename, szBuffer, dwLength);
385 }
386
387 HRESULT WINAPI LoadLibraryShim( LPCWSTR szDllName, LPCWSTR szVersion, LPVOID pvReserved, HMODULE * phModDll)
388 {
389     HRESULT ret=S_OK;
390     WCHAR dll_filename[MAX_PATH];
391     WCHAR version[MAX_PATH];
392     static const WCHAR default_version[] = {'v','1','.','1','.','4','3','2','2',0};
393     static const WCHAR slash[] = {'\\',0};
394     DWORD dummy;
395
396     TRACE("(%p %s, %p, %p, %p)\n", szDllName, debugstr_w(szDllName), szVersion, pvReserved, phModDll);
397
398     if (!szDllName || !phModDll)
399         return E_POINTER;
400
401     if (!get_install_root(dll_filename))
402     {
403         ERR("error reading registry key for installroot\n");
404         dll_filename[0] = 0;
405     }
406     else
407     {
408         if (!szVersion)
409         {
410             ret = GetCORVersion(version, MAX_PATH, &dummy);
411             if (SUCCEEDED(ret))
412                 szVersion = version;
413             else
414                 szVersion = default_version;
415         }
416         strcatW(dll_filename, szVersion);
417         strcatW(dll_filename, slash);
418     }
419
420     strcatW(dll_filename, szDllName);
421
422     *phModDll = LoadLibraryW(dll_filename);
423
424     return *phModDll ? S_OK : E_HANDLE;
425 }
426
427 HRESULT WINAPI LockClrVersion(FLockClrVersionCallback hostCallback, FLockClrVersionCallback *pBeginHostSetup, FLockClrVersionCallback *pEndHostSetup)
428 {
429     FIXME("(%p %p %p): stub\n", hostCallback, pBeginHostSetup, pEndHostSetup);
430     return S_OK;
431 }
432
433 HRESULT WINAPI CoInitializeCor(DWORD fFlags)
434 {
435     FIXME("(0x%08x): stub\n", fFlags);
436     return S_OK;
437 }
438
439 HRESULT WINAPI GetAssemblyMDImport(LPCWSTR szFileName, REFIID riid, IUnknown **ppIUnk)
440 {
441     FIXME("(%p %s, %s, %p): stub\n", szFileName, debugstr_w(szFileName), debugstr_guid(riid), *ppIUnk);
442     return ERROR_CALL_NOT_IMPLEMENTED;
443 }
444
445 HRESULT WINAPI GetVersionFromProcess(HANDLE hProcess, LPWSTR pVersion, DWORD cchBuffer, DWORD *dwLength)
446 {
447     FIXME("(%p, %p, %d, %p): stub\n", hProcess, pVersion, cchBuffer, dwLength);
448     return E_NOTIMPL;
449 }
450
451 HRESULT WINAPI LoadStringRCEx(LCID culture, UINT resId, LPWSTR pBuffer, int iBufLen, int bQuiet, int* pBufLen)
452 {
453     HRESULT res = S_OK;
454     if ((iBufLen <= 0) || !pBuffer)
455         return E_INVALIDARG;
456     pBuffer[0] = 0;
457     if (resId) {
458         FIXME("(%d, %x, %p, %d, %d, %p): semi-stub\n", culture, resId, pBuffer, iBufLen, bQuiet, pBufLen);
459         res = E_NOTIMPL;
460     }
461     else
462         res = E_FAIL;
463     if (pBufLen)
464         *pBufLen = lstrlenW(pBuffer);
465     return res;
466 }
467
468 HRESULT WINAPI LoadStringRC(UINT resId, LPWSTR pBuffer, int iBufLen, int bQuiet)
469 {
470     return LoadStringRCEx(-1, resId, pBuffer, iBufLen, bQuiet, NULL);
471 }
472
473 HRESULT WINAPI CorBindToRuntimeEx(LPWSTR szVersion, LPWSTR szBuildFlavor, DWORD nflags, REFCLSID rslsid,
474                                   REFIID riid, LPVOID *ppv)
475 {
476     HRESULT ret;
477     ICLRRuntimeInfo *info;
478
479     TRACE("%s %s %d %s %s %p\n", debugstr_w(szVersion), debugstr_w(szBuildFlavor), nflags, debugstr_guid( rslsid ),
480           debugstr_guid( riid ), ppv);
481
482     *ppv = NULL;
483
484     ret = get_runtime_info(NULL, szVersion, NULL, nflags, RUNTIME_INFO_UPGRADE_VERSION, TRUE, &info);
485
486     if (SUCCEEDED(ret))
487     {
488         ret = ICLRRuntimeInfo_GetInterface(info, rslsid, riid, ppv);
489
490         ICLRRuntimeInfo_Release(info);
491     }
492
493     return ret;
494 }
495
496 HRESULT WINAPI CorBindToCurrentRuntime(LPCWSTR filename, REFCLSID rclsid, REFIID riid, LPVOID *ppv)
497 {
498     FIXME("(%s, %s, %s, %p): stub\n", debugstr_w(filename), debugstr_guid(rclsid), debugstr_guid(riid), ppv);
499     return E_NOTIMPL;
500 }
501
502 STDAPI ClrCreateManagedInstance(LPCWSTR pTypeName, REFIID riid, void **ppObject)
503 {
504     HRESULT ret;
505     ICLRRuntimeInfo *info;
506     RuntimeHost *host;
507     MonoObject *obj;
508     IUnknown *unk;
509
510     TRACE("(%s,%s,%p)\n", debugstr_w(pTypeName), debugstr_guid(riid), ppObject);
511
512     /* FIXME: How to determine which runtime version to use? */
513     ret = get_runtime_info(NULL, NULL, NULL, 0, RUNTIME_INFO_UPGRADE_VERSION, TRUE, &info);
514
515     if (SUCCEEDED(ret))
516     {
517         ret = ICLRRuntimeInfo_GetRuntimeHost(info, &host);
518
519         ICLRRuntimeInfo_Release(info);
520     }
521
522     if (SUCCEEDED(ret))
523         ret = RuntimeHost_CreateManagedInstance(host, pTypeName, NULL, &obj);
524
525     if (SUCCEEDED(ret))
526         ret = RuntimeHost_GetIUnknownForObject(host, obj, &unk);
527
528     if (SUCCEEDED(ret))
529     {
530         ret = IUnknown_QueryInterface(unk, riid, ppObject);
531         IUnknown_Release(unk);
532     }
533
534     return ret;
535 }
536
537 BOOL WINAPI StrongNameSignatureVerification(LPCWSTR filename, DWORD inFlags, DWORD* pOutFlags)
538 {
539     FIXME("(%s, 0x%X, %p): stub\n", debugstr_w(filename), inFlags, pOutFlags);
540     return FALSE;
541 }
542
543 BOOL WINAPI StrongNameSignatureVerificationEx(LPCWSTR filename, BOOL forceVerification, BOOL* pVerified)
544 {
545     FIXME("(%s, %u, %p): stub\n", debugstr_w(filename), forceVerification, pVerified);
546     return FALSE;
547 }
548
549 HRESULT WINAPI CreateConfigStream(LPCWSTR filename, IStream **stream)
550 {
551     FIXME("(%s, %p): stub\n", debugstr_w(filename), stream);
552     return E_NOTIMPL;
553 }
554
555 HRESULT WINAPI CreateDebuggingInterfaceFromVersion(int nDebugVersion, LPCWSTR version, IUnknown **ppv)
556 {
557     const WCHAR v2_0[] = {'v','2','.','0','.','5','0','7','2','7',0};
558     HRESULT hr = E_FAIL;
559     ICLRRuntimeInfo *runtimeinfo;
560
561     if(nDebugVersion < 1 || nDebugVersion > 4)
562         return E_INVALIDARG;
563
564     TRACE("(%d %s, %p): stub\n", nDebugVersion, debugstr_w(version), ppv);
565
566     if(!ppv)
567         return E_INVALIDARG;
568
569     *ppv = NULL;
570
571     if(strcmpW(version, v2_0) != 0)
572     {
573         FIXME("Currently .NET Version '%s' not support.\n", debugstr_w(version));
574         return E_INVALIDARG;
575     }
576
577     if(nDebugVersion != 3)
578         return E_INVALIDARG;
579
580     hr = CLRMetaHost_GetRuntime(0, version, &IID_ICLRRuntimeInfo, (void**)&runtimeinfo);
581     if(hr == S_OK)
582     {
583         hr = ICLRRuntimeInfo_GetInterface(runtimeinfo, &CLSID_CLRDebuggingLegacy, &IID_ICorDebug, (void**)ppv);
584
585         ICLRRuntimeInfo_Release(runtimeinfo);
586     }
587
588     if(!*ppv)
589         return E_FAIL;
590
591     return hr;
592 }
593
594 HRESULT WINAPI CLRCreateInstance(REFCLSID clsid, REFIID riid, LPVOID *ppInterface)
595 {
596     TRACE("(%s,%s,%p)\n", debugstr_guid(clsid), debugstr_guid(riid), ppInterface);
597
598     if (IsEqualGUID(clsid, &CLSID_CLRMetaHost))
599         return CLRMetaHost_CreateInstance(riid, ppInterface);
600
601     FIXME("not implemented for class %s\n", debugstr_guid(clsid));
602
603     return CLASS_E_CLASSNOTAVAILABLE;
604 }
605
606 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
607 {
608     mscorecf *This;
609     HRESULT hr;
610
611     TRACE("(%s, %s, %p): stub\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
612
613     if(!ppv)
614         return E_INVALIDARG;
615
616     This = HeapAlloc(GetProcessHeap(), 0, sizeof(mscorecf));
617
618     This->IClassFactory_iface.lpVtbl = &mscorecf_vtbl;
619     This->pfnCreateInstance = &create_monodata;
620     This->ref = 1;
621     This->clsid = *rclsid;
622
623     hr = IClassFactory_QueryInterface( &This->IClassFactory_iface, riid, ppv );
624     IClassFactory_Release(&This->IClassFactory_iface);
625
626     return hr;
627 }
628
629 HRESULT WINAPI DllRegisterServer(void)
630 {
631     return __wine_register_resources( MSCOREE_hInstance );
632 }
633
634 HRESULT WINAPI DllUnregisterServer(void)
635 {
636     return __wine_unregister_resources( MSCOREE_hInstance );
637 }
638
639 HRESULT WINAPI DllCanUnloadNow(VOID)
640 {
641     return S_FALSE;
642 }
643
644 void WINAPI CoEEShutDownCOM(void)
645 {
646     FIXME("stub.\n");
647 }
648
649 INT WINAPI ND_RU1( const void *ptr, INT offset )
650 {
651     return *((const BYTE *)ptr + offset);
652 }
653
654 INT WINAPI ND_RI2( const void *ptr, INT offset )
655 {
656     return *(const SHORT *)((const BYTE *)ptr + offset);
657 }
658
659 INT WINAPI ND_RI4( const void *ptr, INT offset )
660 {
661     return *(const INT *)((const BYTE *)ptr + offset);
662 }
663
664 INT64 WINAPI ND_RI8( const void *ptr, INT offset )
665 {
666     return *(const INT64 *)((const BYTE *)ptr + offset);
667 }
668
669 void WINAPI ND_WU1( void *ptr, INT offset, BYTE val )
670 {
671     *((BYTE *)ptr + offset) = val;
672 }
673
674 void WINAPI ND_WI2( void *ptr, INT offset, SHORT val )
675 {
676     *(SHORT *)((BYTE *)ptr + offset) = val;
677 }
678
679 void WINAPI ND_WI4( void *ptr, INT offset, INT val )
680 {
681     *(INT *)((BYTE *)ptr + offset) = val;
682 }
683
684 void WINAPI ND_WI8( void *ptr, INT offset, INT64 val )
685 {
686     *(INT64 *)((BYTE *)ptr + offset) = val;
687 }
688
689 void WINAPI ND_CopyObjDst( const void *src, void *dst, INT offset, INT size )
690 {
691     memcpy( (BYTE *)dst + offset, src, size );
692 }
693
694 void WINAPI ND_CopyObjSrc( const void *src, INT offset, void *dst, INT size )
695 {
696     memcpy( dst, (const BYTE *)src + offset, size );
697 }