2 * Implementation of mscoree.dll
3 * Microsoft Component Object Runtime Execution Engine
5 * Copyright 2006 Paul Chitescu
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.
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.
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
25 #include "wine/unicode.h"
26 #include "wine/library.h"
45 #include "wine/list.h"
46 #include "mscoree_private.h"
49 #include "wine/debug.h"
51 WINE_DEFAULT_DEBUG_CHANNEL( mscoree
);
52 WINE_DECLARE_DEBUG_CHANNEL(winediag
);
54 static HINSTANCE MSCOREE_hInstance
;
56 typedef HRESULT (*fnCreateInstance
)(REFIID riid
, LPVOID
*ppObj
);
58 char *WtoA(LPCWSTR wstr
)
63 length
= WideCharToMultiByte(CP_UTF8
, 0, wstr
, -1, NULL
, 0, NULL
, NULL
);
65 result
= HeapAlloc(GetProcessHeap(), 0, length
);
68 WideCharToMultiByte(CP_UTF8
, 0, wstr
, -1, result
, length
, NULL
, NULL
);
73 static BOOL
get_install_root(LPWSTR install_dir
)
75 static 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};
76 static const WCHAR install_root
[] = {'I','n','s','t','a','l','l','R','o','o','t',0};
81 if (RegOpenKeyExW(HKEY_LOCAL_MACHINE
, dotnet_key
, 0, KEY_READ
, &key
))
85 if (RegQueryValueExW(key
, install_root
, 0, NULL
, (LPBYTE
)install_dir
, &len
))
95 typedef struct mscorecf
97 IClassFactory IClassFactory_iface
;
100 fnCreateInstance pfnCreateInstance
;
105 static inline mscorecf
*impl_from_IClassFactory( IClassFactory
*iface
)
107 return CONTAINING_RECORD(iface
, mscorecf
, IClassFactory_iface
);
110 static HRESULT WINAPI
mscorecf_QueryInterface(IClassFactory
*iface
, REFIID riid
, LPVOID
*ppobj
)
112 TRACE("%s %p\n", debugstr_guid(riid
), ppobj
);
114 if (IsEqualGUID(riid
, &IID_IUnknown
) ||
115 IsEqualGUID(riid
, &IID_IClassFactory
))
117 IClassFactory_AddRef( iface
);
122 ERR("interface %s not implemented\n", debugstr_guid(riid
));
123 return E_NOINTERFACE
;
126 static ULONG WINAPI
mscorecf_AddRef(IClassFactory
*iface
)
128 mscorecf
*This
= impl_from_IClassFactory(iface
);
129 ULONG ref
= InterlockedIncrement(&This
->ref
);
131 TRACE("%p ref=%u\n", This
, ref
);
136 static ULONG WINAPI
mscorecf_Release(IClassFactory
*iface
)
138 mscorecf
*This
= impl_from_IClassFactory(iface
);
139 ULONG ref
= InterlockedDecrement(&This
->ref
);
141 TRACE("%p ref=%u\n", This
, ref
);
145 HeapFree(GetProcessHeap(), 0, This
);
151 static HRESULT WINAPI
mscorecf_CreateInstance(IClassFactory
*iface
,LPUNKNOWN pOuter
,
152 REFIID riid
, LPVOID
*ppobj
)
154 mscorecf
*This
= impl_from_IClassFactory( iface
);
158 TRACE("%p %s %p\n", pOuter
, debugstr_guid(riid
), ppobj
);
163 return CLASS_E_NOAGGREGATION
;
165 hr
= This
->pfnCreateInstance( &This
->clsid
, (LPVOID
*) &punk
);
168 hr
= IUnknown_QueryInterface( punk
, riid
, ppobj
);
170 IUnknown_Release( punk
);
174 WARN("Cannot create an instance object. 0x%08x\n", hr
);
179 static HRESULT WINAPI
mscorecf_LockServer(IClassFactory
*iface
, BOOL dolock
)
181 FIXME("(%p)->(%d),stub!\n",iface
,dolock
);
185 static const struct IClassFactoryVtbl mscorecf_vtbl
=
187 mscorecf_QueryInterface
,
190 mscorecf_CreateInstance
,
194 HRESULT WINAPI
CorBindToRuntimeHost(LPCWSTR pwszVersion
, LPCWSTR pwszBuildFlavor
,
195 LPCWSTR pwszHostConfigFile
, VOID
*pReserved
,
196 DWORD startupFlags
, REFCLSID rclsid
,
197 REFIID riid
, LPVOID
*ppv
)
200 ICLRRuntimeInfo
*info
;
202 TRACE("(%s, %s, %s, %p, %d, %s, %s, %p)\n", debugstr_w(pwszVersion
),
203 debugstr_w(pwszBuildFlavor
), debugstr_w(pwszHostConfigFile
), pReserved
,
204 startupFlags
, debugstr_guid(rclsid
), debugstr_guid(riid
), ppv
);
208 ret
= get_runtime_info(NULL
, pwszVersion
, pwszHostConfigFile
, startupFlags
, 0, TRUE
, &info
);
212 ret
= ICLRRuntimeInfo_GetInterface(info
, rclsid
, riid
, ppv
);
214 ICLRRuntimeInfo_Release(info
);
220 BOOL WINAPI
DllMain(HINSTANCE hinstDLL
, DWORD fdwReason
, LPVOID lpvReserved
)
222 TRACE("(%p, %d, %p)\n", hinstDLL
, fdwReason
, lpvReserved
);
224 MSCOREE_hInstance
= hinstDLL
;
228 case DLL_WINE_PREATTACH
:
229 return FALSE
; /* prefer native version */
230 case DLL_PROCESS_ATTACH
:
232 DisableThreadLibraryCalls(hinstDLL
);
234 case DLL_PROCESS_DETACH
:
235 expect_no_runtimes();
236 if (lpvReserved
) break; /* process is terminating */
237 runtimehost_uninit();
243 __int32 WINAPI
_CorExeMain2(PBYTE ptrMemory
, DWORD cntMemory
, LPWSTR imageName
, LPWSTR loaderName
, LPWSTR cmdLine
)
245 TRACE("(%p, %u, %s, %s, %s)\n", ptrMemory
, cntMemory
, debugstr_w(imageName
), debugstr_w(loaderName
), debugstr_w(cmdLine
));
246 FIXME("Directly running .NET applications not supported.\n");
250 void WINAPI
CorExitProcess(int exitCode
)
252 TRACE("(%x)\n", exitCode
);
253 CLRMetaHost_ExitProcess(0, exitCode
);
256 VOID WINAPI
_CorImageUnloading(PVOID imageBase
)
258 TRACE("(%p): stub\n", imageBase
);
261 HRESULT WINAPI
_CorValidateImage(PVOID
* imageBase
, LPCWSTR imageName
)
263 TRACE("(%p, %s): stub\n", imageBase
, debugstr_w(imageName
));
267 HRESULT WINAPI
GetCORSystemDirectory(LPWSTR pbuffer
, DWORD cchBuffer
, DWORD
*dwLength
)
269 ICLRRuntimeInfo
*info
;
272 TRACE("(%p, %d, %p)!\n", pbuffer
, cchBuffer
, dwLength
);
274 if (!dwLength
|| !pbuffer
)
277 ret
= get_runtime_info(NULL
, NULL
, NULL
, 0, RUNTIME_INFO_UPGRADE_VERSION
, TRUE
, &info
);
281 *dwLength
= cchBuffer
;
282 ret
= ICLRRuntimeInfo_GetRuntimeDirectory(info
, pbuffer
, dwLength
);
284 ICLRRuntimeInfo_Release(info
);
290 HRESULT WINAPI
GetCORVersion(LPWSTR pbuffer
, DWORD cchBuffer
, DWORD
*dwLength
)
292 ICLRRuntimeInfo
*info
;
295 TRACE("(%p, %d, %p)!\n", pbuffer
, cchBuffer
, dwLength
);
297 if (!dwLength
|| !pbuffer
)
300 ret
= get_runtime_info(NULL
, NULL
, NULL
, 0, RUNTIME_INFO_UPGRADE_VERSION
, TRUE
, &info
);
304 *dwLength
= cchBuffer
;
305 ret
= ICLRRuntimeInfo_GetVersionString(info
, pbuffer
, dwLength
);
307 ICLRRuntimeInfo_Release(info
);
313 HRESULT WINAPI
CorIsLatestSvc(int *unk1
, int *unk2
)
315 ERR_(winediag
)("If this function is called, it is likely the result of a broken .NET installation\n");
323 HRESULT WINAPI
GetRequestedRuntimeInfo(LPCWSTR pExe
, LPCWSTR pwszVersion
, LPCWSTR pConfigurationFile
,
324 DWORD startupFlags
, DWORD runtimeInfoFlags
, LPWSTR pDirectory
, DWORD dwDirectory
, DWORD
*dwDirectoryLength
,
325 LPWSTR pVersion
, DWORD cchBuffer
, DWORD
*dwlength
)
328 ICLRRuntimeInfo
*info
;
331 TRACE("(%s, %s, %s, 0x%08x, 0x%08x, %p, 0x%08x, %p, %p, 0x%08x, %p)\n", debugstr_w(pExe
),
332 debugstr_w(pwszVersion
), debugstr_w(pConfigurationFile
), startupFlags
, runtimeInfoFlags
, pDirectory
,
333 dwDirectory
, dwDirectoryLength
, pVersion
, cchBuffer
, dwlength
);
335 if (!dwDirectoryLength
) dwDirectoryLength
= &length_dummy
;
337 if (!dwlength
) dwlength
= &length_dummy
;
339 ret
= get_runtime_info(pExe
, pwszVersion
, pConfigurationFile
, startupFlags
, runtimeInfoFlags
, TRUE
, &info
);
343 *dwlength
= cchBuffer
;
344 ret
= ICLRRuntimeInfo_GetVersionString(info
, pVersion
, dwlength
);
349 pVersion
[0] = pwszVersion
[0];
351 *dwDirectoryLength
= dwDirectory
;
352 ret
= ICLRRuntimeInfo_GetRuntimeDirectory(info
, pDirectory
, dwDirectoryLength
);
355 ICLRRuntimeInfo_Release(info
);
361 HRESULT WINAPI
GetRequestedRuntimeVersion(LPWSTR pExe
, LPWSTR pVersion
, DWORD cchBuffer
, DWORD
*dwlength
)
363 TRACE("(%s, %p, %d, %p)\n", debugstr_w(pExe
), pVersion
, cchBuffer
, dwlength
);
368 return GetRequestedRuntimeInfo(pExe
, NULL
, NULL
, 0, 0, NULL
, 0, NULL
, pVersion
, cchBuffer
, dwlength
);
371 HRESULT WINAPI
GetRealProcAddress(LPCSTR procname
, void **ppv
)
373 FIXME("(%s, %p)\n", debugstr_a(procname
), ppv
);
374 return CLR_E_SHIM_RUNTIMEEXPORT
;
377 HRESULT WINAPI
GetFileVersion(LPCWSTR szFilename
, LPWSTR szBuffer
, DWORD cchBuffer
, DWORD
*dwLength
)
379 TRACE("(%s, %p, %d, %p)\n", debugstr_w(szFilename
), szBuffer
, cchBuffer
, dwLength
);
381 if (!szFilename
|| !dwLength
)
384 *dwLength
= cchBuffer
;
385 return CLRMetaHost_GetVersionFromFile(0, szFilename
, szBuffer
, dwLength
);
388 HRESULT WINAPI
LoadLibraryShim( LPCWSTR szDllName
, LPCWSTR szVersion
, LPVOID pvReserved
, HMODULE
* phModDll
)
391 WCHAR dll_filename
[MAX_PATH
];
392 WCHAR version
[MAX_PATH
];
393 static const WCHAR default_version
[] = {'v','1','.','1','.','4','3','2','2',0};
394 static const WCHAR slash
[] = {'\\',0};
397 TRACE("(%p %s, %p, %p, %p)\n", szDllName
, debugstr_w(szDllName
), szVersion
, pvReserved
, phModDll
);
399 if (!szDllName
|| !phModDll
)
402 if (!get_install_root(dll_filename
))
404 ERR("error reading registry key for installroot\n");
411 ret
= GetCORVersion(version
, MAX_PATH
, &dummy
);
415 szVersion
= default_version
;
417 strcatW(dll_filename
, szVersion
);
418 strcatW(dll_filename
, slash
);
421 strcatW(dll_filename
, szDllName
);
423 *phModDll
= LoadLibraryW(dll_filename
);
425 return *phModDll
? S_OK
: E_HANDLE
;
428 HRESULT WINAPI
LockClrVersion(FLockClrVersionCallback hostCallback
, FLockClrVersionCallback
*pBeginHostSetup
, FLockClrVersionCallback
*pEndHostSetup
)
430 FIXME("(%p %p %p): stub\n", hostCallback
, pBeginHostSetup
, pEndHostSetup
);
434 HRESULT WINAPI
CoInitializeCor(DWORD fFlags
)
436 FIXME("(0x%08x): stub\n", fFlags
);
440 HRESULT WINAPI
GetAssemblyMDImport(LPCWSTR szFileName
, REFIID riid
, IUnknown
**ppIUnk
)
442 FIXME("(%p %s, %s, %p): stub\n", szFileName
, debugstr_w(szFileName
), debugstr_guid(riid
), *ppIUnk
);
443 return ERROR_CALL_NOT_IMPLEMENTED
;
446 HRESULT WINAPI
GetVersionFromProcess(HANDLE hProcess
, LPWSTR pVersion
, DWORD cchBuffer
, DWORD
*dwLength
)
448 FIXME("(%p, %p, %d, %p): stub\n", hProcess
, pVersion
, cchBuffer
, dwLength
);
452 HRESULT WINAPI
LoadStringRCEx(LCID culture
, UINT resId
, LPWSTR pBuffer
, int iBufLen
, int bQuiet
, int* pBufLen
)
455 if ((iBufLen
<= 0) || !pBuffer
)
459 FIXME("(%d, %x, %p, %d, %d, %p): semi-stub\n", culture
, resId
, pBuffer
, iBufLen
, bQuiet
, pBufLen
);
465 *pBufLen
= lstrlenW(pBuffer
);
469 HRESULT WINAPI
LoadStringRC(UINT resId
, LPWSTR pBuffer
, int iBufLen
, int bQuiet
)
471 return LoadStringRCEx(-1, resId
, pBuffer
, iBufLen
, bQuiet
, NULL
);
474 HRESULT WINAPI
CorBindToRuntimeEx(LPWSTR szVersion
, LPWSTR szBuildFlavor
, DWORD nflags
, REFCLSID rslsid
,
475 REFIID riid
, LPVOID
*ppv
)
478 ICLRRuntimeInfo
*info
;
480 TRACE("%s %s %d %s %s %p\n", debugstr_w(szVersion
), debugstr_w(szBuildFlavor
), nflags
, debugstr_guid( rslsid
),
481 debugstr_guid( riid
), ppv
);
485 ret
= get_runtime_info(NULL
, szVersion
, NULL
, nflags
, RUNTIME_INFO_UPGRADE_VERSION
, TRUE
, &info
);
489 ret
= ICLRRuntimeInfo_GetInterface(info
, rslsid
, riid
, ppv
);
491 ICLRRuntimeInfo_Release(info
);
497 HRESULT WINAPI
CorBindToCurrentRuntime(LPCWSTR filename
, REFCLSID rclsid
, REFIID riid
, LPVOID
*ppv
)
500 ICLRRuntimeInfo
*info
;
502 TRACE("(%s, %s, %s, %p)\n", debugstr_w(filename
), debugstr_guid(rclsid
), debugstr_guid(riid
), ppv
);
506 ret
= get_runtime_info(NULL
, NULL
, filename
, 0, RUNTIME_INFO_UPGRADE_VERSION
, TRUE
, &info
);
510 ret
= ICLRRuntimeInfo_GetInterface(info
, rclsid
, riid
, ppv
);
512 ICLRRuntimeInfo_Release(info
);
518 STDAPI
ClrCreateManagedInstance(LPCWSTR pTypeName
, REFIID riid
, void **ppObject
)
521 ICLRRuntimeInfo
*info
;
526 TRACE("(%s,%s,%p)\n", debugstr_w(pTypeName
), debugstr_guid(riid
), ppObject
);
528 /* FIXME: How to determine which runtime version to use? */
529 ret
= get_runtime_info(NULL
, NULL
, NULL
, 0, RUNTIME_INFO_UPGRADE_VERSION
, TRUE
, &info
);
533 ret
= ICLRRuntimeInfo_GetRuntimeHost(info
, &host
);
535 ICLRRuntimeInfo_Release(info
);
539 ret
= RuntimeHost_CreateManagedInstance(host
, pTypeName
, NULL
, &obj
);
542 ret
= RuntimeHost_GetIUnknownForObject(host
, obj
, &unk
);
546 ret
= IUnknown_QueryInterface(unk
, riid
, ppObject
);
547 IUnknown_Release(unk
);
553 BOOL WINAPI
StrongNameSignatureVerification(LPCWSTR filename
, DWORD inFlags
, DWORD
* pOutFlags
)
555 FIXME("(%s, 0x%X, %p): stub\n", debugstr_w(filename
), inFlags
, pOutFlags
);
559 BOOL WINAPI
StrongNameSignatureVerificationEx(LPCWSTR filename
, BOOL forceVerification
, BOOL
* pVerified
)
561 FIXME("(%s, %u, %p): stub\n", debugstr_w(filename
), forceVerification
, pVerified
);
565 HRESULT WINAPI
CreateDebuggingInterfaceFromVersion(int nDebugVersion
, LPCWSTR version
, IUnknown
**ppv
)
567 static const WCHAR v2_0
[] = {'v','2','.','0','.','5','0','7','2','7',0};
569 ICLRRuntimeInfo
*runtimeinfo
;
571 if(nDebugVersion
< 1 || nDebugVersion
> 4)
574 TRACE("(%d %s, %p): stub\n", nDebugVersion
, debugstr_w(version
), ppv
);
581 if(strcmpW(version
, v2_0
) != 0)
583 FIXME("Currently .NET Version '%s' not support.\n", debugstr_w(version
));
587 if(nDebugVersion
!= 3)
590 hr
= CLRMetaHost_GetRuntime(0, version
, &IID_ICLRRuntimeInfo
, (void**)&runtimeinfo
);
593 hr
= ICLRRuntimeInfo_GetInterface(runtimeinfo
, &CLSID_CLRDebuggingLegacy
, &IID_ICorDebug
, (void**)ppv
);
595 ICLRRuntimeInfo_Release(runtimeinfo
);
604 HRESULT WINAPI
CLRCreateInstance(REFCLSID clsid
, REFIID riid
, LPVOID
*ppInterface
)
606 TRACE("(%s,%s,%p)\n", debugstr_guid(clsid
), debugstr_guid(riid
), ppInterface
);
608 if (IsEqualGUID(clsid
, &CLSID_CLRMetaHost
))
609 return CLRMetaHost_CreateInstance(riid
, ppInterface
);
610 if (IsEqualGUID(clsid
, &CLSID_CLRMetaHostPolicy
))
611 return CLRMetaHostPolicy_CreateInstance(riid
, ppInterface
);
613 FIXME("not implemented for class %s\n", debugstr_guid(clsid
));
615 return CLASS_E_CLASSNOTAVAILABLE
;
618 HRESULT WINAPI
CreateInterface(REFCLSID clsid
, REFIID riid
, LPVOID
*ppInterface
)
620 TRACE("(%s,%s,%p)\n", debugstr_guid(clsid
), debugstr_guid(riid
), ppInterface
);
622 return CLRCreateInstance(clsid
, riid
, ppInterface
);
625 HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid
, REFIID riid
, LPVOID
* ppv
)
630 TRACE("(%s, %s, %p): stub\n", debugstr_guid(rclsid
), debugstr_guid(riid
), ppv
);
635 This
= HeapAlloc(GetProcessHeap(), 0, sizeof(mscorecf
));
637 This
->IClassFactory_iface
.lpVtbl
= &mscorecf_vtbl
;
638 This
->pfnCreateInstance
= create_monodata
;
640 This
->clsid
= *rclsid
;
642 hr
= IClassFactory_QueryInterface( &This
->IClassFactory_iface
, riid
, ppv
);
643 IClassFactory_Release(&This
->IClassFactory_iface
);
648 static void parse_msi_version_string(const char *version
, int *parts
)
650 const char *minor_start
, *build_start
;
652 parts
[0] = atoi(version
);
654 parts
[1] = parts
[2] = 0;
656 minor_start
= strchr(version
, '.');
660 parts
[1] = atoi(minor_start
);
662 build_start
= strchr(minor_start
, '.');
664 parts
[2] = atoi(build_start
+1);
668 static BOOL
install_wine_mono(void)
670 BOOL is_wow64
= FALSE
;
672 UINT (WINAPI
*pMsiEnumRelatedProductsA
)(LPCSTR
,DWORD
,DWORD
,LPSTR
);
673 UINT (WINAPI
*pMsiGetProductInfoA
)(LPCSTR
,LPCSTR
,LPSTR
,DWORD
*);
674 char versionstringbuf
[15];
675 char productcodebuf
[39];
678 PROCESS_INFORMATION pi
;
685 static const char* mono_version
= "4.7.3";
686 static const char* mono_upgrade_code
= "{DE624609-C6B5-486A-9274-EF0B854F6BC5}";
688 static const WCHAR controlW
[] = {'\\','c','o','n','t','r','o','l','.','e','x','e',0};
689 static const WCHAR argsW
[] =
690 {' ','a','p','p','w','i','z','.','c','p','l',' ','i','n','s','t','a','l','l','_','m','o','n','o',0};
692 IsWow64Process(GetCurrentProcess(), &is_wow64
);
696 TRACE("not installing mono in wow64 process\n");
700 hmsi
= LoadLibraryA("msi");
704 ERR("couldn't load msi.dll\n");
708 pMsiEnumRelatedProductsA
= (void*)GetProcAddress(hmsi
, "MsiEnumRelatedProductsA");
710 res
= pMsiEnumRelatedProductsA(mono_upgrade_code
, 0, 0, productcodebuf
);
712 if (res
== ERROR_SUCCESS
)
714 pMsiGetProductInfoA
= (void*)GetProcAddress(hmsi
, "MsiGetProductInfoA");
716 buffer_size
= sizeof(versionstringbuf
);
718 res
= pMsiGetProductInfoA(productcodebuf
, "VersionString", versionstringbuf
, &buffer_size
);
720 else if (res
!= ERROR_NO_MORE_ITEMS
)
722 ERR("MsiEnumRelatedProducts failed, err=%u\n", res
);
727 if (res
== ERROR_SUCCESS
)
729 int current_version
[3], wanted_version
[3], i
;
731 TRACE("found installed version %s\n", versionstringbuf
);
733 parse_msi_version_string(versionstringbuf
, current_version
);
734 parse_msi_version_string(mono_version
, wanted_version
);
738 if (current_version
[i
] < wanted_version
[i
])
740 else if (current_version
[i
] > wanted_version
[i
])
742 TRACE("installed version is newer than %s, quitting\n", mono_version
);
749 TRACE("version %s is already installed, quitting\n", mono_version
);
754 len
= GetSystemDirectoryW(app
, MAX_PATH
- ARRAY_SIZE(controlW
));
755 memcpy(app
+len
, controlW
, sizeof(controlW
));
757 args
= HeapAlloc(GetProcessHeap(), 0, (len
*sizeof(WCHAR
) + sizeof(controlW
) + sizeof(argsW
)));
761 memcpy(args
, app
, len
*sizeof(WCHAR
) + sizeof(controlW
));
762 memcpy(args
+ len
+ ARRAY_SIZE(controlW
) - 1, argsW
, sizeof(argsW
));
764 TRACE("starting %s\n", debugstr_w(args
));
766 memset(&si
, 0, sizeof(si
));
768 ret
= CreateProcessW(app
, args
, NULL
, NULL
, FALSE
, 0, NULL
, NULL
, &si
, &pi
);
769 HeapFree(GetProcessHeap(), 0, args
);
771 CloseHandle(pi
.hThread
);
772 WaitForSingleObject(pi
.hProcess
, INFINITE
);
773 CloseHandle(pi
.hProcess
);
779 HRESULT WINAPI
DllRegisterServer(void)
783 return __wine_register_resources( MSCOREE_hInstance
);
786 HRESULT WINAPI
DllUnregisterServer(void)
788 return __wine_unregister_resources( MSCOREE_hInstance
);
791 HRESULT WINAPI
DllCanUnloadNow(VOID
)
796 void WINAPI
CoEEShutDownCOM(void)
801 INT WINAPI
ND_RU1( const void *ptr
, INT offset
)
803 return *((const BYTE
*)ptr
+ offset
);
806 INT WINAPI
ND_RI2( const void *ptr
, INT offset
)
808 return *(const SHORT
*)((const BYTE
*)ptr
+ offset
);
811 INT WINAPI
ND_RI4( const void *ptr
, INT offset
)
813 return *(const INT
*)((const BYTE
*)ptr
+ offset
);
816 INT64 WINAPI
ND_RI8( const void *ptr
, INT offset
)
818 return *(const INT64
*)((const BYTE
*)ptr
+ offset
);
821 void WINAPI
ND_WU1( void *ptr
, INT offset
, BYTE val
)
823 *((BYTE
*)ptr
+ offset
) = val
;
826 void WINAPI
ND_WI2( void *ptr
, INT offset
, SHORT val
)
828 *(SHORT
*)((BYTE
*)ptr
+ offset
) = val
;
831 void WINAPI
ND_WI4( void *ptr
, INT offset
, INT val
)
833 *(INT
*)((BYTE
*)ptr
+ offset
) = val
;
836 void WINAPI
ND_WI8( void *ptr
, INT offset
, INT64 val
)
838 *(INT64
*)((BYTE
*)ptr
+ offset
) = val
;
841 void WINAPI
ND_CopyObjDst( const void *src
, void *dst
, INT offset
, INT size
)
843 memcpy( (BYTE
*)dst
+ offset
, src
, size
);
846 void WINAPI
ND_CopyObjSrc( const void *src
, INT offset
, void *dst
, INT size
)
848 memcpy( dst
, (const BYTE
*)src
+ offset
, size
);