00001 #ifndef __CONFIG_H 00002 #define __CONFIG_H 00003 00004 #define _UNICODE 00005 00006 #ifdef _UNICODE 00007 #include <limits.h> 00008 00009 #define UTF8 00010 00011 typedef unsigned short tchar; 00012 const tchar UEOF = USHRT_MAX; 00013 00014 #else 00015 typedef char tchar; 00016 const int UEOF = -1; 00017 #endif 00018 00019 #include "ustring.h" 00020 00021 #define BORDER 2 00022 00023 //#define _FAST 00024 00025 #endif
1.4.2