mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 09:58:01 +00:00
492b3933f8
was fixed in CVS in 2000 (I think); and we now depend on MinGW much more recent than that for various other reasons. I've tested with my current MinGW (around 2.0.0 vintage) and the original symptoms (dodgy characters in edit boxes) don't appear to show up. [originally from svn r5491]
34 lines
561 B
C
34 lines
561 B
C
/*
|
|
* Miscellaneous stuff to include in all .rc files.
|
|
*/
|
|
|
|
#ifndef PUTTY_RCSTUFF_H
|
|
#define PUTTY_RCSTUFF_H
|
|
|
|
#ifdef __LCC__
|
|
#include <win.h>
|
|
#else
|
|
|
|
/* Some compilers, like Borland, don't have winresrc.h */
|
|
#ifndef NO_WINRESRC_H
|
|
#ifndef MSVC4
|
|
#include <winresrc.h>
|
|
#else
|
|
#include <winres.h>
|
|
#endif
|
|
#endif
|
|
|
|
#endif /* end #ifdef __LCC__ */
|
|
|
|
/* Some systems don't define this, so I do it myself if necessary */
|
|
#ifndef TCS_MULTILINE
|
|
#define TCS_MULTILINE 0x0200
|
|
#endif
|
|
|
|
/* Likewise */
|
|
#ifndef RT_MANIFEST
|
|
#define RT_MANIFEST 24
|
|
#endif
|
|
|
|
#endif /* PUTTY_RCSTUFF_H */
|