mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[URL] Implement OpenURLA function
CORE-18625
This commit is contained in:
parent
ce2d4740a6
commit
1c91b0b61d
1 changed files with 5 additions and 0 deletions
|
@ -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)
|
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);
|
FIXME("(%p, %p, %s, %d): stub!\n", hwnd, inst, debugstr_a(cmdline), show);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
|
|
Loading…
Reference in a new issue