Moved the rest of the API specification from the global file to the
[wine/testsucceed.git] / dlls / olepro32 / olepro32stubs.c
blobaa62f2f39270d2e60d033a32e56dcc46daf4626a
1 /*
2 * OlePro32 Stubs
4 * Copyright 1999 Corel Corporation
6 * Sean Langley
7 */
9 #include "windef.h"
10 #include "debugtools.h"
11 #include "olectl.h"
13 DEFAULT_DEBUG_CHANNEL(ole)
15 /*****************************************************
16 * OleIconToCursor
18 HCURSOR WINAPI OleIconToCursor( HINSTANCE hinstExe, HICON hicon)
20 FIXME("(%x,%x), not implemented (olepro32.dll)\n",hinstExe,hicon);
21 return S_OK;
24 /*****************************************************
25 * OleCreatePropertyFrameIndirect
27 HRESULT WINAPI OleCreatePropertyFrameIndirect( LPOCPFIPARAMS lpParams)
29 FIXME("(%p), not implemented (olepro32.dll)\n",lpParams);
30 return S_OK;
33 /*****************************************************
34 * OleCreatePropertyFrame
36 HRESULT WINAPI OleCreatePropertyFrame( HWND hwndOwner, UINT x, UINT y,
37 LPCOLESTR lpszCaption,ULONG cObjects, LPUNKNOWN* ppUnk,
38 ULONG cPages, LPCLSID pPageClsID, LCID lcid,
39 DWORD dwReserved, LPVOID pvReserved )
41 FIXME("(%x,%d,%d,%p,%ld,%p,%ld,%p,%x,%ld,%p), not implemented (olepro32.dll)\n",
42 hwndOwner,x,y,lpszCaption,cObjects,ppUnk,cPages,pPageClsID,
43 (int)lcid,dwReserved,pvReserved);
44 return S_OK;
47 /*****************************************************
48 * OleLoadPicture
50 HRESULT WINAPI OleLoadPicture( LPSTREAM lpstream, LONG lSize, BOOL fRunmode,
51 REFIID reed, LPVOID *lplpvObj )
53 FIXME("(%p,%ld,%d,%p,%p), not implemented (olepro32.dll) \n",
54 lpstream,lSize,fRunmode,reed,lplpvObj
56 return S_OK;
59 /*****************************************************
60 * OleCreatePictureIndirect
62 HRESULT WINAPI OleCreatePictureIndirect(LPPICTDESC lpPictDesc, REFIID riid,
63 BOOL fOwn, LPVOID * lplpvObj )
65 FIXME("(%p,%p,%d,%p), not implemented (olepro32.dll)\n",
66 lpPictDesc,riid,fOwn,lplpvObj
68 return S_OK;
71 HRESULT WINAPI OLEPRO32_DllUnregisterServer()
73 FIXME("not implemented (olepro32.dll) \n");
74 return S_OK;
77 HRESULT WINAPI OLEPRO32_DllRegisterServer()
79 FIXME("not implemented (olepro32.dll) \n");
80 return S_OK;
83 HRESULT WINAPI OLEPRO32_DllCanUnloadNow( )
85 FIXME("not implemented (olepro32.dll) \n");
86 return S_OK;
89 HRESULT WINAPI OLEPRO32_DllGetClassObject( REFCLSID rclsid, REFIID riid, LPVOID* ppv )
91 FIXME("not implemented (olepro32.dll) \n");
92 return S_OK;