url: Add a stub for AddMIMEFileTypesPS.

This commit is contained in:
Detlef Riekenberg 2008-02-05 23:18:16 +01:00 committed by Alexandre Julliard
parent 210363e464
commit 8776e5deaa
2 changed files with 23 additions and 1 deletions

View File

@ -1,4 +1,4 @@
@ stub AddMIMEFileTypesPS
@ stdcall AddMIMEFileTypesPS(ptr ptr)
@ stub AutodialHookCallback
@ stub DllCanUnloadNow
@ stub DllGetClassObject

View File

@ -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);
@ -44,6 +47,25 @@ BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
return TRUE;
}
/***********************************************************************
* 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.@)
*