Rewrite EscapeCommFunction16 to use EscapeCommFunction.
[wine/wine-kai.git] / dlls / oleaut32 / stubs.c
blob1678178940849ac35a5bdb596857ab5e2d1d97d1
1 /*
2 * OlePro32 Stubs
4 * Copyright 1999 Corel Corporation
6 * Sean Langley
7 */
9 #include "windef.h"
10 #include "winbase.h"
11 #include "wingdi.h"
12 #include "winuser.h"
13 #include "debugtools.h"
14 #include "ole2.h"
15 #include "olectl.h"
16 #include "heap.h"
18 DEFAULT_DEBUG_CHANNEL(ole);
20 /***********************************************************************
21 * OleIconToCursor (OLEAUT32.415)
23 HCURSOR WINAPI OleIconToCursor( HINSTANCE hinstExe, HICON hicon)
25 FIXME("(%x,%x), not implemented (olepro32.dll)\n",hinstExe,hicon);
26 return S_OK;
29 /***********************************************************************
30 * OleCreatePropertyFrameIndirect (OLEAUT32.416)
32 HRESULT WINAPI OleCreatePropertyFrameIndirect( LPOCPFIPARAMS lpParams)
34 FIXME("(%p), not implemented (olepro32.dll)\n",lpParams);
35 return S_OK;
38 /***********************************************************************
39 * OleCreatePropertyFrame (OLEAUT32.417)
41 HRESULT WINAPI OleCreatePropertyFrame(
42 HWND hwndOwner, UINT x, UINT y, LPCOLESTR lpszCaption,ULONG cObjects,
43 LPUNKNOWN* ppUnk, ULONG cPages, LPCLSID pPageClsID, LCID lcid,
44 DWORD dwReserved, LPVOID pvReserved )
46 FIXME("(%x,%d,%d,%s,%ld,%p,%ld,%p,%x,%ld,%p), not implemented (olepro32.dll)\n",
47 hwndOwner,x,y,debugstr_w(lpszCaption),cObjects,ppUnk,cPages,
48 pPageClsID, (int)lcid,dwReserved,pvReserved);
49 return S_OK;