Recovery of release 990110 after disk crash.
[wine/multimedia.git] / ole / moniker.c
blob9bc2171e6409be9db73524cb3cd749d6baa77108
1 /*
2 * Monikers
4 * Copyright 1998 Marcus Meissner
5 */
7 #include <ctype.h>
8 #include <stdlib.h>
9 #include <string.h>
10 #include <assert.h>
11 #include "winerror.h"
12 #include "wine/obj_base.h"
13 #include "wine/obj_storage.h"
14 #include "wine/obj_moniker.h"
15 #include "debug.h"
17 /******************************************************************************
18 * CreateFileMoniker16 [OLE2.28]
20 HRESULT WINAPI
21 CreateFileMoniker16(
22 LPCOLESTR16 lpszPathName, /* [in] pathname */
23 LPMONIKER * ppmk /* [out] new moniker object */
24 ) {
25 FIXME(ole,"(%s,%p),stub!\n",lpszPathName,ppmk);
26 *ppmk = NULL;
27 return E_FAIL;
30 /******************************************************************************
31 * CreateFileMoniker32 [OLE32.55]
33 HRESULT WINAPI
34 CreateFileMoniker32(
35 LPCOLESTR32 lpszPathName, /* [in] pathname */
36 LPMONIKER * ppmk /* [out] new moniker object */
37 ) {
38 FIXME(ole,"(%s,%p),stub!\n",debugstr_w(lpszPathName),ppmk);
39 *ppmk = NULL;
40 return E_FAIL;
43 /******************************************************************************
44 * CreateItemMoniker32 [OLE32.58]
46 HRESULT WINAPI
47 CreateItemMoniker32(
48 LPCOLESTR32 lpszDelim, /* [in] */
49 LPCOLESTR32 lpszItem, /* [in] */
50 LPMONIKER * ppmk /* [out] new moniker object */
53 FIXME (ole,"(%s %s %p),stub!\n",
54 debugstr_w(lpszDelim), debugstr_w(lpszItem), ppmk);
55 return E_FAIL;