wine-patch OleIconToCursor function

Frank Richter frank.richter at gmail.com
Sat Dec 30 12:09:31 CST 2006


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.




More information about the wine-devel mailing list