4 * Copyright 1999 Corel Corporation
10 #include "debugtools.h"
14 DEFAULT_DEBUG_CHANNEL(ole);
16 /***********************************************************************
19 HCURSOR WINAPI OleIconToCursor( HINSTANCE hinstExe, HICON hicon)
21 FIXME("(%x,%x), not implemented (olepro32.dll)\n",hinstExe,hicon);
25 /***********************************************************************
26 * OleCreatePropertyFrameIndirect
28 HRESULT WINAPI OleCreatePropertyFrameIndirect( LPOCPFIPARAMS lpParams)
30 FIXME("(%p), not implemented (olepro32.dll)\n",lpParams);
34 /***********************************************************************
35 * OleCreatePropertyFrame
37 HRESULT WINAPI OleCreatePropertyFrame(
38 HWND hwndOwner, UINT x, UINT y, LPCOLESTR lpszCaption,ULONG cObjects,
39 LPUNKNOWN* ppUnk, ULONG cPages, LPCLSID pPageClsID, LCID lcid,
40 DWORD dwReserved, LPVOID pvReserved )
42 FIXME("(%x,%d,%d,%s,%ld,%p,%ld,%p,%x,%ld,%p), not implemented (olepro32.dll)\n",
43 hwndOwner,x,y,debugstr_w(lpszCaption),cObjects,ppUnk,cPages,
44 pPageClsID, (int)lcid,dwReserved,pvReserved);
48 /***********************************************************************
51 ULONG WINAPI LHashValOfNameSysA( SYSKIND skind, LCID lcid, LPCSTR str)
53 /* returns a 16 bit hashvalue (depending on skind and lcid) in the
54 * lowword and a unique id made from skind and lcid in bits 23-16
56 FIXME("(%d,%x,%s), stub, returning 0x424242!\n",skind,(int)lcid,debugstr_a(str));
59 /***********************************************************************
62 ULONG WINAPI LHashValOfNameSys( SYSKIND skind, LCID lcid, LPCOLESTR str)
68 strA = HEAP_strdupWtoA(GetProcessHeap(),0,str);
69 res = LHashValOfNameSysA(skind,lcid,strA);
70 HeapFree(GetProcessHeap(),0,strA);