Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
8761a1d5
Commit
8761a1d5
authored
Jul 05, 2005
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Jul 05, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
LoadImageW: Fix type of TRACE parameter.
parent
96b7cce0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
7 deletions
+3
-7
cursoricon.c
dlls/user/cursoricon.c
+3
-7
No files found.
dlls/user/cursoricon.c
View file @
8761a1d5
...
...
@@ -2225,13 +2225,9 @@ HANDLE WINAPI LoadImageA( HINSTANCE hinst, LPCSTR name, UINT type,
HANDLE
WINAPI
LoadImageW
(
HINSTANCE
hinst
,
LPCWSTR
name
,
UINT
type
,
INT
desiredx
,
INT
desiredy
,
UINT
loadflags
)
{
if
(
HIWORD
(
name
))
{
TRACE_
(
resource
)(
"(%p,%p,%d,%d,%d,0x%08x)
\n
"
,
hinst
,
name
,
type
,
desiredx
,
desiredy
,
loadflags
);
}
else
{
TRACE_
(
resource
)(
"(%p,%p,%d,%d,%d,0x%08x)
\n
"
,
hinst
,
name
,
type
,
desiredx
,
desiredy
,
loadflags
);
}
TRACE_
(
resource
)(
"(%p,%s,%d,%d,%d,0x%08x)
\n
"
,
hinst
,
debugstr_w
(
name
),
type
,
desiredx
,
desiredy
,
loadflags
);
if
(
loadflags
&
LR_DEFAULTSIZE
)
{
if
(
type
==
IMAGE_ICON
)
{
if
(
!
desiredx
)
desiredx
=
GetSystemMetrics
(
SM_CXICON
);
...
...
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