]> git.saurik.com Git - wxWidgets.git/blame - include/wx/icon.h
Getting rid of odd control characters at EOL in source.
[wxWidgets.git] / include / wx / icon.h
CommitLineData
34138703
JS
1#ifndef _WX_ICON_H_BASE_
2#define _WX_ICON_H_BASE_
c801d85f 3
47bc1060 4/* Commenting out since duplicated in gdicmn.h
03f38c58
VZ
5// this is for Unix (i.e. now for anything other than MSW)
6#undef wxICON
7#define wxICON(icon_name) wxIcon(icon_name##_xpm)
47bc1060 8*/
03f38c58 9
2049ba38 10#if defined(__WXMSW__)
03f38c58 11 #include "wx/msw/icon.h"
2049ba38 12#elif defined(__WXMOTIF__)
03f38c58 13 #include "wx/motif/icon.h"
2049ba38 14#elif defined(__WXGTK__)
03f38c58 15 #include "wx/gtk/icon.h"
1e6feb95
VZ
16#elif defined(__WXMGL__)
17 #include "wx/mgl/icon.h"
34138703 18#elif defined(__WXMAC__)
03f38c58 19 #include "wx/mac/icon.h"
1777b9bb
DW
20#elif defined(__WXPM__)
21 #include "wx/os2/icon.h"
34138703 22#elif defined(__WXSTUBS__)
03f38c58 23 #include "wx/stubs/icon.h"
c801d85f
KB
24#endif
25
26#endif
34138703 27 // _WX_ICON_H_BASE_