[URL] Implement OpenURLA function

CORE-18625
This commit is contained in:
Katayama Hirofumi MZ 2023-07-21 08:24:26 +09:00
parent ce2d4740a6
commit 1c91b0b61d

View file

@ -105,7 +105,12 @@ 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
}
/***********************************************************************