30 Dec
2006
30 Dec
'06
12:09 p.m.
On 30.12.2006 18:54, Marcus Meissner wrote:
+/*********************************************************************** + * OleIconToCursor (OLEAUT32.415) + */ +HCURSOR WINAPI OleIconToCursor( HINSTANCE hinstExe, HICON hIcon) +{ + FIXME("(%p,%p), (olepro32.dll), partially implemented.\n",hinstExe,hIcon); + if (hIcon) + return CopyCursor(hIcon); + else + return NULL; + + /* FIXME + make a extended conversation from HICON to HCURSOR + */ +}
According to http://msdn2.microsoft.com/en-us/library/ms694362.aspx, this function just does a simple CopyCursor() on Win32. And since there doesn't seem to be a need for further changes to that function, the FIXME trace as well as comment could both be removed. -f.r.