user32: Add a FIXME for animated cursors.

oldstable
Andrew Riedi 2007-12-01 13:31:56 -08:00 committed by Alexandre Julliard
parent 0e568af828
commit 3d08d32a42
1 changed files with 7 additions and 2 deletions

View File

@ -39,8 +39,6 @@
* the X client instead of in the server like other bitmaps; however,
* some programs (notably Paint Brush) expect to be able to manipulate
* the bits directly :-(
*
* FIXME: what are we going to do with animation and color (bpp > 1) cursors ?!
*/
#include "config.h"
@ -901,6 +899,13 @@ static HICON CURSORICON_LoadFromFile( LPCWSTR filename,
if (!bits)
return hIcon;
/* Check for .ani. */
if (memcmp( bits, "RIFF", 4 ) == 0)
{
FIXME("No support for .ani cursors.\n");
goto end;
}
dir = (CURSORICONFILEDIR*) bits;
if ( filesize < sizeof(*dir) )
goto end;