Sweden-Number/ole/moniker.c

34 lines
692 B
C

/*
* Monikers
*
* Copyright 1998 Marcus Meissner
*/
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include "winerror.h"
#include "ole.h"
#include "ole2.h"
#include "ldt.h"
#include "heap.h"
#include "compobj.h"
#include "interfaces.h"
#include "shlobj.h"
#include "local.h"
#include "module.h"
#include "debug.h"
/****************************************************************************
* CreateFileMoniker (OLE2.28)
*/
HRESULT WINAPI
CreateFileMoniker16(
LPCOLESTR16 lpszPathName, /* [in] pathname */
LPMONIKER * ppmk /* [out] new moniker object */
) {
fprintf(stderr,"CreateFileMoniker(%s,%p),stub!\n",lpszPathName,ppmk);
return E_FAIL;
}