url: Add stub for OpenURLA.

oldstable
Stefan Leichter 2011-10-19 20:53:14 +02:00 committed by Alexandre Julliard
parent 811ae03aeb
commit 9b2132b560
2 changed files with 11 additions and 2 deletions

View File

@ -11,8 +11,8 @@
@ stub MailToProtocolHandlerA
@ stub NewsProtocolHandler
@ stub NewsProtocolHandlerA
@ stub OpenURL
@ stub OpenURLA
@ stdcall OpenURL(long long str long) OpenURLA
@ stdcall OpenURLA(long long str long)
@ stdcall TelnetProtocolHandler(long str) TelnetProtocolHandlerA
@ stdcall TelnetProtocolHandlerA(long str)
@ stub TranslateURLA

View File

@ -105,6 +105,15 @@ HRESULT WINAPI FileProtocolHandlerA(HWND hWnd, HINSTANCE hInst, LPCSTR pszUrl,
return S_OK;
}
/***********************************************************************
* OpenURLA (URL.@)
*
*/
void WINAPI OpenURLA(HWND hwnd, HINSTANCE inst, LPCSTR cmdline, INT show)
{
FIXME("(%p, %p, %s, %d): stub!\n", hwnd, inst, debugstr_a(cmdline), show);
}
/***********************************************************************
* TelnetProtocolHandlerA (URL.@)
*