url: Add a stub for AddMIMEFileTypesPS.
This commit is contained in:
parent
210363e464
commit
8776e5deaa
|
@ -1,4 +1,4 @@
|
|||
@ 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);
|
||||
|
@ -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.@)
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue