Commit 8776e5de authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

url: Add a stub for AddMIMEFileTypesPS.

parent 210363e4
@ stub AddMIMEFileTypesPS
@ stdcall AddMIMEFileTypesPS(ptr ptr)
@ stub AutodialHookCallback
@ stub DllCanUnloadNow
@ stub DllGetClassObject
......
......@@ -24,6 +24,9 @@
#include "shellapi.h"
#include "shlwapi.h"
#include "intshcut.h"
#include "winuser.h"
#include "commctrl.h"
#include "prsht.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(url);
......@@ -45,6 +48,25 @@ BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
}
/***********************************************************************
* AddMIMEFileTypesPS (URL.@)
*
* Build and Manage a Filetype-Association Property Sheet
*
* PARAMS
* unknown1 [I] Pointer to an Read-Only Area
* lppsh [I] PTR to the target PropertySheetHeader (ANSI)
*
* RETURNS
* Success: 0
*
*/
DWORD WINAPI AddMIMEFileTypesPS(VOID * unknown1, LPPROPSHEETHEADERA lppsh)
{
FIXME("(%p, %p): stub!\n", unknown1, lppsh);
return 0;
}
/***********************************************************************
* InetIsOffline (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