url: Add stub for OpenURLA.
This commit is contained in:
parent
811ae03aeb
commit
9b2132b560
|
@ -11,8 +11,8 @@
|
||||||
@ stub MailToProtocolHandlerA
|
@ stub MailToProtocolHandlerA
|
||||||
@ stub NewsProtocolHandler
|
@ stub NewsProtocolHandler
|
||||||
@ stub NewsProtocolHandlerA
|
@ stub NewsProtocolHandlerA
|
||||||
@ stub OpenURL
|
@ stdcall OpenURL(long long str long) OpenURLA
|
||||||
@ stub OpenURLA
|
@ stdcall OpenURLA(long long str long)
|
||||||
@ stdcall TelnetProtocolHandler(long str) TelnetProtocolHandlerA
|
@ stdcall TelnetProtocolHandler(long str) TelnetProtocolHandlerA
|
||||||
@ stdcall TelnetProtocolHandlerA(long str)
|
@ stdcall TelnetProtocolHandlerA(long str)
|
||||||
@ stub TranslateURLA
|
@ stub TranslateURLA
|
||||||
|
|
|
@ -105,6 +105,15 @@ HRESULT WINAPI FileProtocolHandlerA(HWND hWnd, HINSTANCE hInst, LPCSTR pszUrl,
|
||||||
return S_OK;
|
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.@)
|
* TelnetProtocolHandlerA (URL.@)
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue