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