Merged msacm and msacm32 dlls.
[wine] / dlls / oleaut32 / stubs.c
1 /*
2  * OlePro32 Stubs
3  *
4  * Copyright 1999 Corel Corporation
5  *
6  * Sean Langley
7  */
8
9 #include "windef.h"
10 #include "debugtools.h"
11 #include "olectl.h"
12
13 DEFAULT_DEBUG_CHANNEL(ole);
14
15 /***********************************************************************
16  * OleIconToCursor
17  */
18 HCURSOR WINAPI OleIconToCursor( HINSTANCE hinstExe, HICON hicon)
19 {
20         FIXME("(%x,%x), not implemented (olepro32.dll)\n",hinstExe,hicon);
21         return S_OK;
22 }
23
24 /***********************************************************************
25  * OleCreatePropertyFrameIndirect
26  */
27 HRESULT WINAPI OleCreatePropertyFrameIndirect( LPOCPFIPARAMS lpParams)
28 {
29         FIXME("(%p), not implemented (olepro32.dll)\n",lpParams);
30         return S_OK;
31 }
32  
33 /***********************************************************************
34  * OleCreatePropertyFrame
35  */
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 )
40 {
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;
45 }
46