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
dc71624d
Commit
dc71624d
authored
Nov 18, 2002
by
Ryan Cumming
Committed by
Alexandre Julliard
Nov 18, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make LookupIconIdFromDirectoryEx16 call LookupIconIdFromDirectoryEx,
instead of the other way around.
parent
9f029b7d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
cursoricon.c
windows/cursoricon.c
+11
-11
No files found.
windows/cursoricon.c
View file @
dc71624d
...
...
@@ -1403,11 +1403,20 @@ BOOL WINAPI GetClipCursor( RECT *rect )
*
* FIXME: exact parameter sizes
*/
INT16
WINAPI
LookupIconIdFromDirectoryEx16
(
LPBYTE
x
dir
,
BOOL16
bIcon
,
INT16
WINAPI
LookupIconIdFromDirectoryEx16
(
LPBYTE
dir
,
BOOL16
bIcon
,
INT16
width
,
INT16
height
,
UINT16
cFlag
)
{
return
LookupIconIdFromDirectoryEx
(
dir
,
bIcon
,
width
,
height
,
cFlag
);
}
/**********************************************************************
* LookupIconIdFromDirectoryEx (USER32.@)
*/
INT
WINAPI
LookupIconIdFromDirectoryEx
(
LPBYTE
xdir
,
BOOL
bIcon
,
INT
width
,
INT
height
,
UINT
cFlag
)
{
CURSORICONDIR
*
dir
=
(
CURSORICONDIR
*
)
xdir
;
UINT
16
retVal
=
0
;
UINT
retVal
=
0
;
if
(
dir
&&
!
dir
->
idReserved
&&
(
dir
->
idType
&
3
)
)
{
CURSORICONDIRENTRY
*
entry
;
...
...
@@ -1434,15 +1443,6 @@ INT16 WINAPI LookupIconIdFromDirectoryEx16( LPBYTE xdir, BOOL16 bIcon,
}
/**********************************************************************
* LookupIconIdFromDirectoryEx (USER32.@)
*/
INT
WINAPI
LookupIconIdFromDirectoryEx
(
LPBYTE
dir
,
BOOL
bIcon
,
INT
width
,
INT
height
,
UINT
cFlag
)
{
return
LookupIconIdFromDirectoryEx16
(
dir
,
bIcon
,
width
,
height
,
cFlag
);
}
/**********************************************************************
* LookupIconIdFromDirectory (USER.?)
*/
INT16
WINAPI
LookupIconIdFromDirectory16
(
LPBYTE
dir
,
BOOL16
bIcon
)
...
...
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