url: Add stub for OpenURLA.
This commit is contained in:
parent
811ae03aeb
commit
9b2132b560
|
@ -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
|
||||
|
|
|
@ -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.@)
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue