Retire MINGW32_FIX. It was a fix for a blatant bug in MinGW's windres, which
[u/mdw/putty] / windows / rcstuff.h
1 /*
2 * Miscellaneous stuff to include in all .rc files.
3 */
4
5 #ifndef PUTTY_RCSTUFF_H
6 #define PUTTY_RCSTUFF_H
7
8 #ifdef __LCC__
9 #include <win.h>
10 #else
11
12 /* Some compilers, like Borland, don't have winresrc.h */
13 #ifndef NO_WINRESRC_H
14 #ifndef MSVC4
15 #include <winresrc.h>
16 #else
17 #include <winres.h>
18 #endif
19 #endif
20
21 #endif /* end #ifdef __LCC__ */
22
23 /* Some systems don't define this, so I do it myself if necessary */
24 #ifndef TCS_MULTILINE
25 #define TCS_MULTILINE 0x0200
26 #endif
27
28 /* Likewise */
29 #ifndef RT_MANIFEST
30 #define RT_MANIFEST 24
31 #endif
32
33 #endif /* PUTTY_RCSTUFF_H */