Add the decVal field to VARIANT.
[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 "winbase.h"
11 #include "wingdi.h"
12 #include "winuser.h"
13 #include "debugtools.h"
14 #include "ole2.h"
15 #include "olectl.h"
16
17 DEFAULT_DEBUG_CHANNEL(ole);
18
19 /***********************************************************************
20  * OleIconToCursor (OLEAUT32.415)
21  */
22 HCURSOR WINAPI OleIconToCursor( HINSTANCE hinstExe, HICON hicon)
23 {
24         FIXME("(%x,%x), not implemented (olepro32.dll)\n",hinstExe,hicon);
25         return S_OK;
26 }
27
28 /***********************************************************************
29  * OleCreatePropertyFrameIndirect (OLEAUT32.416)
30  */
31 HRESULT WINAPI OleCreatePropertyFrameIndirect( LPOCPFIPARAMS lpParams)
32 {
33         FIXME("(%p), not implemented (olepro32.dll)\n",lpParams);
34         return S_OK;
35 }
36  
37 /***********************************************************************
38  * OleCreatePropertyFrame (OLEAUT32.417)
39  */
40 HRESULT WINAPI OleCreatePropertyFrame(
41     HWND hwndOwner, UINT x, UINT y, LPCOLESTR lpszCaption,ULONG cObjects,
42     LPUNKNOWN* ppUnk, ULONG cPages, LPCLSID pPageClsID, LCID lcid, 
43     DWORD dwReserved, LPVOID pvReserved )
44 {
45         FIXME("(%x,%d,%d,%s,%ld,%p,%ld,%p,%x,%ld,%p), not implemented (olepro32.dll)\n",
46                 hwndOwner,x,y,debugstr_w(lpszCaption),cObjects,ppUnk,cPages,
47                 pPageClsID, (int)lcid,dwReserved,pvReserved);
48         return S_OK;
49 }
50