Patrik Stridvall | 194bd05 | 2000-02-29 22:02:11 +0000 | [diff] [blame] | 1 | /* |
| 2 | * OlePro32 Stubs |
| 3 | * |
| 4 | * Copyright 1999 Corel Corporation |
| 5 | * |
| 6 | * Sean Langley |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 7 | * |
| 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 Stridvall | 194bd05 | 2000-02-29 22:02:11 +0000 | [diff] [blame] | 21 | */ |
| 22 | |
| 23 | #include "windef.h" |
François Gouget | 44a1822 | 2000-12-19 04:53:20 +0000 | [diff] [blame] | 24 | #include "winbase.h" |
Patrik Stridvall | 1ed5577 | 2000-11-30 01:31:28 +0000 | [diff] [blame] | 25 | #include "wingdi.h" |
| 26 | #include "winuser.h" |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 27 | #include "wine/debug.h" |
Patrik Stridvall | 1ed5577 | 2000-11-30 01:31:28 +0000 | [diff] [blame] | 28 | #include "ole2.h" |
Patrik Stridvall | 194bd05 | 2000-02-29 22:02:11 +0000 | [diff] [blame] | 29 | #include "olectl.h" |
| 30 | |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 31 | WINE_DEFAULT_DEBUG_CHANNEL(ole); |
Patrik Stridvall | 194bd05 | 2000-02-29 22:02:11 +0000 | [diff] [blame] | 32 | |
Patrik Stridvall | 54fe838 | 2000-04-06 20:21:16 +0000 | [diff] [blame] | 33 | /*********************************************************************** |
Patrik Stridvall | 8b216b3 | 2001-06-19 18:20:47 +0000 | [diff] [blame] | 34 | * OleIconToCursor (OLEAUT32.415) |
Patrik Stridvall | 194bd05 | 2000-02-29 22:02:11 +0000 | [diff] [blame] | 35 | */ |
| 36 | HCURSOR WINAPI OleIconToCursor( HINSTANCE hinstExe, HICON hicon) |
| 37 | { |
Alexandre Julliard | 140e722 | 2002-05-05 19:40:57 +0000 | [diff] [blame^] | 38 | FIXME("(%x,%x), not implemented (olepro32.dll)\n",hinstExe,hicon); |
| 39 | return S_OK; |
Patrik Stridvall | 194bd05 | 2000-02-29 22:02:11 +0000 | [diff] [blame] | 40 | } |
| 41 | |
Alexandre Julliard | 140e722 | 2002-05-05 19:40:57 +0000 | [diff] [blame^] | 42 | /*********************************************************************** |
| 43 | * OleCreatePropertyFrameIndirect (OLEAUT32.416) |
| 44 | */ |
| 45 | HRESULT 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 | */ |
| 54 | HRESULT 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 Stridvall | 194bd05 | 2000-02-29 22:02:11 +0000 | [diff] [blame] | 64 | |