X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bbcdf8bc7ca806d8278c7cb6d09d5590378b67d8..c2bbeff0048b6f02bf1ef41edc6c7a3ce148f907:/include/wx/msw/curico.h diff --git a/include/wx/msw/curico.h b/include/wx/msw/curico.h index b85a39b194..a4f4394350 100644 --- a/include/wx/msw/curico.h +++ b/include/wx/msw/curico.h @@ -9,14 +9,20 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -HICON ReadIconFile( char *szFileName, HINSTANCE hInst, +#ifndef _WX_CURICO_H_ +#define _WX_CURICO_H_ + +HICON ReadIconFile( wxChar *szFileName, HINSTANCE hInst, int *W = 0, int *H = 0); -HCURSOR ReadCursorFile( char *szFileName, HINSTANCE hInst, +HCURSOR ReadCursorFile( wxChar *szFileName, HINSTANCE hInst, int *W = 0, int *H = 0, int *XHot = 0, int *YHot = 0); -HCURSOR IconToCursor( char *szFileName, HINSTANCE hInst, int XHot, int YHot, +HCURSOR IconToCursor( wxChar *szFileName, HINSTANCE hInst, int XHot, int YHot, int *W = 0, int *H = 0); -HICON CursorToIcon( char *szFileName, HINSTANCE hInst, +HICON CursorToIcon( wxChar *szFileName, HINSTANCE hInst, int *W = 0, int *H = 0); HCURSOR MakeCursorFromBitmap(HINSTANCE hInst, HBITMAP hBitmap, POINT *pPoint); HICON MakeIconFromBitmap(HINSTANCE hInst, HBITMAP hBitmap); + +#endif +