]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/curico.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Icon and cursor functions
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 HICON
ReadIconFile( char *szFileName
, HINSTANCE hInst
,
13 int *W
= 0, int *H
= 0);
14 HCURSOR
ReadCursorFile( char *szFileName
, HINSTANCE hInst
,
15 int *W
= 0, int *H
= 0, int *XHot
= 0, int *YHot
= 0);
16 HCURSOR
IconToCursor( char *szFileName
, HINSTANCE hInst
, int XHot
, int YHot
,
17 int *W
= 0, int *H
= 0);
18 HICON
CursorToIcon( char *szFileName
, HINSTANCE hInst
,
19 int *W
= 0, int *H
= 0);
21 HCURSOR
MakeCursorFromBitmap(HINSTANCE hInst
, HBITMAP hBitmap
, POINT
*pPoint
);
22 HICON
MakeIconFromBitmap(HINSTANCE hInst
, HBITMAP hBitmap
);