From 9b2132b560590d28be4c022b5a9fb5e17c783562 Mon Sep 17 00:00:00 2001 From: Stefan Leichter Date: Wed, 19 Oct 2011 20:53:14 +0200 Subject: [PATCH] url: Add stub for OpenURLA. --- dlls/url/url.spec | 4 ++-- dlls/url/url_main.c | 9 +++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/dlls/url/url.spec b/dlls/url/url.spec index c2087c42ee0..343d2bf1962 100644 --- a/dlls/url/url.spec +++ b/dlls/url/url.spec @@ -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 diff --git a/dlls/url/url_main.c b/dlls/url/url_main.c index 69b46eaa317..b65aa02972a 100644 --- a/dlls/url/url_main.c +++ b/dlls/url/url_main.c @@ -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.@) *