Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
3d08d32a
Commit
3d08d32a
authored
Dec 01, 2007
by
Andrew Riedi
Committed by
Alexandre Julliard
Dec 03, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Add a FIXME for animated cursors.
parent
0e568af8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
cursoricon.c
dlls/user32/cursoricon.c
+7
-2
No files found.
dlls/user32/cursoricon.c
View file @
3d08d32a
...
@@ -39,8 +39,6 @@
...
@@ -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,
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment