From 969a78da805d267ac5abc6427e017e4f6e3fec18 Mon Sep 17 00:00:00 2001 From: Trent Waddington Date: Tue, 28 Aug 2007 22:54:03 +1000 Subject: Handle LoadFromFile for animated cursors. --- dlls/user32/cursoricon.c | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/dlls/user32/cursoricon.c b/dlls/user32/cursoricon.c index 5ea63fb..22d699c 100644 --- a/dlls/user32/cursoricon.c +++ b/dlls/user32/cursoricon.c @@ -1024,7 +1024,6 @@ HICON WINAPI CreateIconFromResource( LPBYTE bits, UINT cbSize, return CreateIconFromResourceEx( bits, cbSize, bIcon, dwVersion, 0,0,0); } - static HICON CURSORICON_LoadFromFile( LPCWSTR filename, INT width, INT height, INT colors, BOOL fCursor, UINT loadflags) @@ -1041,6 +1040,12 @@ static HICON CURSORICON_LoadFromFile( LPCWSTR filename, if (!bits) return hIcon; + if (isAnimatedCursor(bits)) + { + return CreateIconFromResourceEx( bits, filesize, !fCursor, 0x00030000, + 0, 0, loadflags ); + } + dir = (CURSORICONFILEDIR*) bits; if ( filesize < sizeof(*dir) ) goto end; -- 1.4.4.3