Yet another improvement to the bezier code.
[wine/dcerpc.git] / ole / moniker.c
blob844fc78260fe93be28d1323e5245619a52944593
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 "ole.h"
13 #include "ole2.h"
14 #include "ldt.h"
15 #include "heap.h"
16 #include "compobj.h"
17 #include "interfaces.h"
18 #include "storage.h"
19 #include "shlobj.h"
20 #include "local.h"
21 #include "module.h"
22 #include "debug.h"
24 /****************************************************************************
25 * CreateFileMoniker (OLE2.28)
27 HRESULT WINAPI
28 CreateFileMoniker16(
29 LPCOLESTR16 lpszPathName, /* [in] pathname */
30 LPMONIKER * ppmk /* [out] new moniker object */
31 ) {
32 FIXME(ole,"(%s,%p),stub!\n",lpszPathName,ppmk);
33 return E_FAIL;
35 /****************************************************************************
36 * CreateFileMoniker (OLE32.55)
38 HRESULT WINAPI
39 CreateFileMoniker32(
40 LPCOLESTR32 lpszPathName, /* [in] pathname */
41 LPMONIKER * ppmk /* [out] new moniker object */
42 ) {
43 FIXME(ole,"(%s,%p),stub!\n",debugstr_w(lpszPathName),ppmk);
44 return E_FAIL;