Commit 9b2132b5 authored by Stefan Leichter's avatar Stefan Leichter Committed by Alexandre Julliard

url: Add stub for OpenURLA.

parent 811ae03a
...@@ -11,8 +11,8 @@ ...@@ -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
......
...@@ -106,6 +106,15 @@ HRESULT WINAPI FileProtocolHandlerA(HWND hWnd, HINSTANCE hInst, LPCSTR pszUrl, ...@@ -106,6 +106,15 @@ HRESULT WINAPI FileProtocolHandlerA(HWND hWnd, HINSTANCE hInst, LPCSTR pszUrl,
} }
/*********************************************************************** /***********************************************************************
* 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.@)
* *
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment