4 * Copyright 1999 Corel Corporation
12 #include "debugtools.h"
17 DEFAULT_DEBUG_CHANNEL(ole);
19 /***********************************************************************
22 HCURSOR WINAPI OleIconToCursor( HINSTANCE hinstExe, HICON hicon)
24 FIXME("(%x,%x), not implemented (olepro32.dll)\n",hinstExe,hicon);
28 /***********************************************************************
29 * OleCreatePropertyFrameIndirect
31 HRESULT WINAPI OleCreatePropertyFrameIndirect( LPOCPFIPARAMS lpParams)
33 FIXME("(%p), not implemented (olepro32.dll)\n",lpParams);
37 /***********************************************************************
38 * OleCreatePropertyFrame
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 )
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);
51 /***********************************************************************
54 ULONG WINAPI LHashValOfNameSysA( SYSKIND skind, LCID lcid, LPCSTR str)
56 /* returns a 16 bit hashvalue (depending on skind and lcid) in the
57 * lowword and a unique id made from skind and lcid in bits 23-16
59 FIXME("(%d,%x,%s), stub, returning 0x424242!\n",skind,(int)lcid,debugstr_a(str));
62 /***********************************************************************
65 ULONG WINAPI LHashValOfNameSys( SYSKIND skind, LCID lcid, LPCOLESTR str)
71 strA = HEAP_strdupWtoA(GetProcessHeap(),0,str);
72 res = LHashValOfNameSysA(skind,lcid,strA);
73 HeapFree(GetProcessHeap(),0,strA);