From: Si Lai <lesboyspp43@outlook.com> --- dlls/url/url_main.c | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/dlls/url/url_main.c b/dlls/url/url_main.c index a2029a7f4fa..838d4a88134 100644 --- a/dlls/url/url_main.c +++ b/dlls/url/url_main.c @@ -32,24 +32,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(url); -/*********************************************************************** - * DllMain (URL.@) - */ -BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved ) -{ - switch(reason) - { -#ifndef __REACTOS__ - case DLL_WINE_PREATTACH: - return FALSE; /* prefer native version */ -#endif - case DLL_PROCESS_ATTACH: - DisableThreadLibraryCalls( inst ); - break; - } - return TRUE; -} - /*********************************************************************** * AddMIMEFileTypesPS (URL.@) * @@ -138,12 +120,7 @@ void WINAPI FileProtocolHandlerA(HWND hWnd, HINSTANCE hInst, LPCSTR pszUrl, int */ void WINAPI OpenURLA(HWND hwnd, HINSTANCE inst, LPCSTR cmdline, INT show) { -#ifdef __REACTOS__ - TRACE("(%p, %p, %s, %d)\n", hwnd, inst, debugstr_a(cmdline), show); - ShellExecuteA(hwnd, NULL, cmdline, NULL, NULL, show); -#else FIXME("(%p, %p, %s, %d): stub!\n", hwnd, inst, debugstr_a(cmdline), show); -#endif } /*********************************************************************** -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10137