winex11: Remove unnecessary CLIPBOARDINFO structure.
[wine/multimedia.git] / dlls / ole32 / ole2stubs.c
blobba321658f1b394271a800840bed69e2015ee9dfc
1 /*
2 * Temporary place for ole2 stubs.
4 * Copyright (C) 1999 Corel Corporation
5 * Move these functions to dlls/ole32/ole2impl.c when you implement them.
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include <stdarg.h>
24 #include "windef.h"
25 #include "winbase.h"
26 #include "winuser.h"
27 #include "ole2.h"
28 #include "objidl.h"
29 #include "wine/debug.h"
31 WINE_DEFAULT_DEBUG_CHANNEL(ole);
33 /******************************************************************************
34 * OleCreateLinkToFile [OLE32.@]
36 HRESULT WINAPI OleCreateLinkToFile(LPCOLESTR lpszFileName, REFIID riid,
37 DWORD renderopt, LPFORMATETC lpFormatEtc,
38 LPOLECLIENTSITE pClientSite, LPSTORAGE pStg, LPVOID* ppvObj)
40 FIXME("(%p,%p,%i,%p,%p,%p,%p), stub!\n",lpszFileName, riid, renderopt, lpFormatEtc, pClientSite, pStg, ppvObj);
41 return E_NOTIMPL;
44 /******************************************************************************
45 * OleCreateLink [OLE32.@]
47 HRESULT WINAPI OleCreateLink(LPMONIKER pmkLinkSrc, REFIID riid, DWORD renderopt, LPFORMATETC lpFormatEtc,
48 LPOLECLIENTSITE pClientSite, LPSTORAGE pStg, LPVOID* ppvObj)
50 FIXME("(not shown), stub!\n");
51 return E_NOTIMPL;
54 /******************************************************************************
55 * OleCreateFromFile [OLE32.@]
57 HRESULT WINAPI OleCreateFromFile(REFCLSID rclsid, LPCOLESTR lpszFileName, REFIID riid,
58 DWORD renderopt, LPFORMATETC lpFormatEtc, LPOLECLIENTSITE pClientSite, LPSTORAGE pStg, LPVOID* ppvObj)
60 FIXME("(not shown), stub!\n");
61 return E_NOTIMPL;
65 /******************************************************************************
66 * OleGetIconOfClass [OLE32.@]
68 HGLOBAL WINAPI OleGetIconOfClass(REFCLSID rclsid, LPOLESTR lpszLabel, BOOL fUseTypeAsLabel)
70 FIXME("(%p,%p,%x), stub!\n", rclsid, lpszLabel, fUseTypeAsLabel);
71 return NULL;
74 /***********************************************************************
75 * OleRegEnumFormatEtc [OLE32.@]
77 HRESULT WINAPI OleRegEnumFormatEtc (
78 REFCLSID clsid,
79 DWORD dwDirection,
80 LPENUMFORMATETC* ppenumFormatetc)
82 FIXME("(%p, %d, %p), stub!\n", clsid, dwDirection, ppenumFormatetc);
84 return E_NOTIMPL;
87 /***********************************************************************
88 * CoGetCallerTID [OLE32.@]
90 HRESULT WINAPI CoGetCallerTID(LPDWORD lpdwTID)
92 FIXME("stub!\n");
93 return E_NOTIMPL;
96 /***********************************************************************
97 * CoGetCurrentLogicalThreadId [OLE32.@]
99 HRESULT WINAPI CoGetCurrentLogicalThreadId(GUID *pguid)
101 FIXME(": stub\n");
102 return E_NOTIMPL;