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
dd6e2b36
Commit
dd6e2b36
authored
Oct 03, 2006
by
Oleg Krylov
Committed by
Alexandre Julliard
Oct 03, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user: Fix CopyImage function declaration.
parent
06f9c797
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
cursoricon.c
dlls/user/cursoricon.c
+2
-2
winuser.h
include/winuser.h
+1
-1
No files found.
dlls/user/cursoricon.c
View file @
dd6e2b36
...
...
@@ -2308,7 +2308,7 @@ HANDLE WINAPI LoadImageW( HINSTANCE hinst, LPCWSTR name, UINT type,
* if the source is a DIB section.
* The LR_MONOCHROME flag is ignored if LR_CREATEDIBSECTION is present.
*/
H
ICON
WINAPI
CopyImage
(
HANDLE
hnd
,
UINT
type
,
INT
desiredx
,
H
ANDLE
WINAPI
CopyImage
(
HANDLE
hnd
,
UINT
type
,
INT
desiredx
,
INT
desiredy
,
UINT
flags
)
{
TRACE
(
"hnd=%p, type=%u, desiredx=%d, desiredy=%d, flags=%x
\n
"
,
...
...
@@ -2492,7 +2492,7 @@ HICON WINAPI CopyImage( HANDLE hnd, UINT type, INT desiredx,
}
}
HeapFree
(
GetProcessHeap
(),
0
,
bi
);
return
(
HICON
)
res
;
return
res
;
}
case
IMAGE_ICON
:
return
CURSORICON_ExtCopy
(
hnd
,
type
,
desiredx
,
desiredy
,
flags
);
...
...
include/winuser.h
View file @
dd6e2b36
...
...
@@ -4215,7 +4215,7 @@ BOOL WINAPI CloseWindow(HWND);
BOOL
WINAPI
CloseWindowStation
(
HWINSTA
);
#define CopyCursor(cur) ((HCURSOR)CopyIcon((HICON)(cur)))
HICON
WINAPI
CopyIcon
(
HICON
);
H
ICON
WINAPI
CopyImage
(
HANDLE
,
UINT
,
INT
,
INT
,
UINT
);
H
ANDLE
WINAPI
CopyImage
(
HANDLE
,
UINT
,
INT
,
INT
,
UINT
);
BOOL
WINAPI
CopyRect
(
RECT
*
,
const
RECT
*
);
INT
WINAPI
CountClipboardFormats
(
void
);
BOOL
WINAPI
CreateCaret
(
HWND
,
HBITMAP
,
INT
,
INT
);
...
...
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