mirror of
https://github.com/reactos/wine.git
synced 2025-04-05 01:21:40 +00:00
user: Fix CopyImage function declaration.
This commit is contained in:
parent
06f9c79739
commit
dd6e2b361d
@ -2308,7 +2308,7 @@ HANDLE WINAPI LoadImageW( HINSTANCE hinst, LPCWSTR name, UINT type,
|
|||||||
* if the source is a DIB section.
|
* if the source is a DIB section.
|
||||||
* The LR_MONOCHROME flag is ignored if LR_CREATEDIBSECTION is present.
|
* The LR_MONOCHROME flag is ignored if LR_CREATEDIBSECTION is present.
|
||||||
*/
|
*/
|
||||||
HICON WINAPI CopyImage( HANDLE hnd, UINT type, INT desiredx,
|
HANDLE WINAPI CopyImage( HANDLE hnd, UINT type, INT desiredx,
|
||||||
INT desiredy, UINT flags )
|
INT desiredy, UINT flags )
|
||||||
{
|
{
|
||||||
TRACE("hnd=%p, type=%u, desiredx=%d, desiredy=%d, flags=%x\n",
|
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);
|
HeapFree(GetProcessHeap(), 0, bi);
|
||||||
return (HICON)res;
|
return res;
|
||||||
}
|
}
|
||||||
case IMAGE_ICON:
|
case IMAGE_ICON:
|
||||||
return CURSORICON_ExtCopy(hnd,type, desiredx, desiredy, flags);
|
return CURSORICON_ExtCopy(hnd,type, desiredx, desiredy, flags);
|
||||||
|
@ -4215,7 +4215,7 @@ BOOL WINAPI CloseWindow(HWND);
|
|||||||
BOOL WINAPI CloseWindowStation(HWINSTA);
|
BOOL WINAPI CloseWindowStation(HWINSTA);
|
||||||
#define CopyCursor(cur) ((HCURSOR)CopyIcon((HICON)(cur)))
|
#define CopyCursor(cur) ((HCURSOR)CopyIcon((HICON)(cur)))
|
||||||
HICON WINAPI CopyIcon(HICON);
|
HICON WINAPI CopyIcon(HICON);
|
||||||
HICON WINAPI CopyImage(HANDLE,UINT,INT,INT,UINT);
|
HANDLE WINAPI CopyImage(HANDLE,UINT,INT,INT,UINT);
|
||||||
BOOL WINAPI CopyRect(RECT*,const RECT*);
|
BOOL WINAPI CopyRect(RECT*,const RECT*);
|
||||||
INT WINAPI CountClipboardFormats(void);
|
INT WINAPI CountClipboardFormats(void);
|
||||||
BOOL WINAPI CreateCaret(HWND,HBITMAP,INT,INT);
|
BOOL WINAPI CreateCaret(HWND,HBITMAP,INT,INT);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user