Commit d8acdcc2 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

url: Fix prototype of FileProtocolHandlerA.

parent f49880c6
......@@ -4,8 +4,8 @@
@ stub DllGetClassObject
@ stub DummyEntryPoint
@ stub DummyEntryPointA
@ stdcall FileProtocolHandler(long str long) FileProtocolHandlerA
@ stdcall FileProtocolHandlerA(long str long)
@ stdcall FileProtocolHandler(long ptr str long) FileProtocolHandlerA
@ stdcall FileProtocolHandlerA(long ptr str long)
@ stdcall InetIsOffline(long)
@ stub MIMEAssociationDialogA
@ stub MIMEAssociationDialogW
......
......@@ -61,17 +61,19 @@ BOOL WINAPI InetIsOffline(DWORD flags)
* Handles a URL given to it and executes it.
*
* HWND hWnd - Parent Window
* HINSTANCE hInst - ignored
* LPCSTR pszUrl - The URL that needs to be handled
* int nShowCmd - How to display the operation.
*/
HRESULT WINAPI FileProtocolHandlerA(HWND hWnd, LPCSTR pszUrl,int nShowCmd)
HRESULT WINAPI FileProtocolHandlerA(HWND hWnd, HINSTANCE hInst, LPCSTR pszUrl,
int nShowCmd)
{
CHAR pszPath[MAX_PATH];
DWORD size = MAX_PATH;
HRESULT createpath = PathCreateFromUrlA(pszUrl,pszPath,&size,0);
TRACE("(%p, %p, %d)\n",hWnd,pszUrl,nShowCmd);
TRACE("(%p, %s, %d)\n",hWnd,debugstr_a(pszUrl),nShowCmd);
if(createpath != S_OK)
return E_FAIL;
......
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