url: Fix prototype of FileProtocolHandlerA.

This commit is contained in:
Juan Lang 2007-11-02 09:03:32 -07:00 committed by Alexandre Julliard
parent f49880c6af
commit d8acdcc2b4
2 changed files with 6 additions and 4 deletions

View file

@ -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

View file

@ -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;