Open-Source-Software-Entwicklung und Downloads

Browse Subversion Repository

Contents of /trunk/teraterm/common/teraterm.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3227 - (show annotations) (download) (as text)
Tue Mar 24 15:10:33 2009 UTC (15 years, 1 month ago) by maya
File MIME type: text/x-chdr
File size: 736 byte(s)
CVS から SVN へ移行: 改行コードを LF から CR+LF へ変換
1 /* Tera Term
2 Copyright(C) 1994-1998 T. Teranishi
3 All rights reserved. */
4 /* IPv6 modification is Copyright(C) 2000, 2001 Jun-ya kato <kato@win6.jp> */
5
6 #ifndef NO_INET6
7 #ifndef _WINSOCKAPI_
8 #define _WINSOCKAPI_ /* Prevent inclusion of winsock.h in windows.h */
9 #endif /* _WINSOCKAPI_ */
10 #endif /* NO_INET6 */
11 #include <windows.h>
12
13 // AKASI氏によるEterm風透過ウィンドウ
14 #define ALPHABLEND_TYPE2
15
16 // Added by 337 2006/03/01
17 #define USE_NORMAL_BGCOLOR
18
19 #include "i18n.h"
20
21 #define MAXPATHLEN 256
22 /* version 2.3 */
23 #define TTVERSION (WORD)23
24
25 #define DEBUG_PRINT(val) { \
26 FILE *fp; \
27 fp = fopen("debugmsg.txt", "a+"); \
28 if (fp != NULL) { \
29 fprintf(fp, "%s = %d\n", #val, val); \
30 fclose(fp); \
31 } \
32 }

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26