Implement LHashValOfNameSysA for 4 LCIDs, fix prototype.
[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 #include "heap.h"
17
18 DEFAULT_DEBUG_CHANNEL(ole);
19
20 /***********************************************************************
21  * OleIconToCursor
22  */
23 HCURSOR WINAPI OleIconToCursor( HINSTANCE hinstExe, HICON hicon)
24 {
25         FIXME("(%x,%x), not implemented (olepro32.dll)\n",hinstExe,hicon);
26         return S_OK;
27 }
28
29 /***********************************************************************
30  * OleCreatePropertyFrameIndirect
31  */
32 HRESULT WINAPI OleCreatePropertyFrameIndirect( LPOCPFIPARAMS lpParams)
33 {
34         FIXME("(%p), not implemented (olepro32.dll)\n",lpParams);
35         return S_OK;
36 }
37  
38 /***********************************************************************
39  * OleCreatePropertyFrame
40  */
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 )
45 {
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;
50 }
51