]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: curico.h | |
3 | // Purpose: Icon and cursor functions | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
bbcdf8bc JS |
8 | // Copyright: (c) Julian Smart |
9 | // Licence: wxWindows licence | |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
8fb3a512 JS |
12 | #ifndef _WX_CURICO_H_ |
13 | #define _WX_CURICO_H_ | |
14 | ||
32c1cda2 | 15 | HICON ReadIconFile( wxChar *szFileName, HINSTANCE hInst, |
2bda0e17 | 16 | int *W = 0, int *H = 0); |
32c1cda2 | 17 | HCURSOR ReadCursorFile( wxChar *szFileName, HINSTANCE hInst, |
2bda0e17 | 18 | int *W = 0, int *H = 0, int *XHot = 0, int *YHot = 0); |
32c1cda2 | 19 | HCURSOR IconToCursor( wxChar *szFileName, HINSTANCE hInst, int XHot, int YHot, |
2bda0e17 | 20 | int *W = 0, int *H = 0); |
32c1cda2 | 21 | HICON CursorToIcon( wxChar *szFileName, HINSTANCE hInst, |
2bda0e17 KB |
22 | int *W = 0, int *H = 0); |
23 | ||
24 | HCURSOR MakeCursorFromBitmap(HINSTANCE hInst, HBITMAP hBitmap, POINT *pPoint); | |
25 | HICON MakeIconFromBitmap(HINSTANCE hInst, HBITMAP hBitmap); | |
8fb3a512 JS |
26 | |
27 | #endif | |
28 |