blob: d1d3c63f0b3f3e13bb124ccc967744f08a481348 [file] [log] [blame]
Patrik Stridvall194bd052000-02-29 22:02:11 +00001/*
2 * OlePro32 Stubs
3 *
4 * Copyright 1999 Corel Corporation
5 *
6 * Sean Langley
Alexandre Julliard0799c1a2002-03-09 23:29:33 +00007 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Patrik Stridvall194bd052000-02-29 22:02:11 +000021 */
22
23#include "windef.h"
François Gouget44a18222000-12-19 04:53:20 +000024#include "winbase.h"
Patrik Stridvall1ed55772000-11-30 01:31:28 +000025#include "wingdi.h"
26#include "winuser.h"
Alexandre Julliard0799c1a2002-03-09 23:29:33 +000027#include "wine/debug.h"
Patrik Stridvall1ed55772000-11-30 01:31:28 +000028#include "ole2.h"
Patrik Stridvall194bd052000-02-29 22:02:11 +000029#include "olectl.h"
30
Alexandre Julliard0799c1a2002-03-09 23:29:33 +000031WINE_DEFAULT_DEBUG_CHANNEL(ole);
Patrik Stridvall194bd052000-02-29 22:02:11 +000032
Patrik Stridvall54fe8382000-04-06 20:21:16 +000033/***********************************************************************
Patrik Stridvall8b216b32001-06-19 18:20:47 +000034 * OleIconToCursor (OLEAUT32.415)
Patrik Stridvall194bd052000-02-29 22:02:11 +000035 */
36HCURSOR WINAPI OleIconToCursor( HINSTANCE hinstExe, HICON hicon)
37{
Alexandre Julliard140e7222002-05-05 19:40:57 +000038 FIXME("(%x,%x), not implemented (olepro32.dll)\n",hinstExe,hicon);
39 return S_OK;
Patrik Stridvall194bd052000-02-29 22:02:11 +000040}
41
Alexandre Julliard140e7222002-05-05 19:40:57 +000042/***********************************************************************
43 * OleCreatePropertyFrameIndirect (OLEAUT32.416)
44 */
45HRESULT WINAPI OleCreatePropertyFrameIndirect( LPOCPFIPARAMS lpParams)
46{
47 FIXME("(%p), not implemented (olepro32.dll)\n",lpParams);
48 return S_OK;
49}
50
51/***********************************************************************
52 * OleCreatePropertyFrame (OLEAUT32.417)
53 */
54HRESULT WINAPI OleCreatePropertyFrame(
55 HWND hwndOwner, UINT x, UINT y, LPCOLESTR lpszCaption,ULONG cObjects,
56 LPUNKNOWN* ppUnk, ULONG cPages, LPCLSID pPageClsID, LCID lcid,
57 DWORD dwReserved, LPVOID pvReserved )
58{
59 FIXME("(%x,%d,%d,%s,%ld,%p,%ld,%p,%x,%ld,%p), not implemented (olepro32.dll)\n",
60 hwndOwner,x,y,debugstr_w(lpszCaption),cObjects,ppUnk,cPages,
61 pPageClsID, (int)lcid,dwReserved,pvReserved);
62 return S_OK;
63}
Patrik Stridvall194bd052000-02-29 22:02:11 +000064