OSDN Git Service

Add VC++ Project files for PuTTY DLL without exported functions.
[ffftp/ffftp.git] / putty / WINDOWS / RCSTUFF.H
1 /*\r
2  * Miscellaneous stuff to include in all .rc files.\r
3  */\r
4 \r
5 #ifndef PUTTY_RCSTUFF_H\r
6 #define PUTTY_RCSTUFF_H\r
7 \r
8 #ifdef __LCC__\r
9 #include <win.h>\r
10 #else\r
11 \r
12 /* Some compilers, like Borland, don't have winresrc.h */\r
13 #ifndef NO_WINRESRC_H\r
14 #ifndef MSVC4\r
15 #include <winresrc.h>\r
16 #else\r
17 #include <winres.h>\r
18 #endif\r
19 #endif\r
20 \r
21 #endif /* end #ifdef __LCC__ */\r
22 \r
23 /* Some systems don't define this, so I do it myself if necessary */\r
24 #ifndef TCS_MULTILINE\r
25 #define TCS_MULTILINE 0x0200\r
26 #endif\r
27 \r
28 /* Likewise */\r
29 #ifndef RT_MANIFEST\r
30 #define RT_MANIFEST 24\r
31 #endif\r
32 \r
33 /* LCC is the offender here. */\r
34 #ifndef VS_FF_DEBUG\r
35 #define VS_FF_DEBUG        1\r
36 #endif\r
37 #ifndef VS_FF_PRERELEASE\r
38 #define VS_FF_PRERELEASE   2\r
39 #endif\r
40 #ifndef VS_FF_PRIVATEBUILD\r
41 #define VS_FF_PRIVATEBUILD 8\r
42 #endif\r
43 #ifndef VOS__WINDOWS32\r
44 #define VOS__WINDOWS32     4\r
45 #endif\r
46 #ifndef VFT_APP\r
47 #define VFT_APP            1\r
48 #endif\r
49 \r
50 #endif /* PUTTY_RCSTUFF_H */\r