/* $Id$ */ #ifndef CLIMM_DATATYPE_H #define CLIMM_DATATYPE_H #if HAVE_UNISTD_H #include #endif #ifdef HAVE_WINDEF_H #include #endif #if !HAVE_BOOL typedef unsigned char BOOL; #endif #if !HAVE_UDWORD typedef unsigned SIZE_4_TYPE UDWORD; #endif #if !HAVE_UWORD typedef unsigned SIZE_2_TYPE UWORD; #endif #if !HAVE_UBYTE typedef unsigned SIZE_1_TYPE UBYTE; #endif static inline unsigned long int UD2UL (UDWORD i) { return (unsigned long int) i; }; #if !HAVE_SOCKLEN_T typedef int socklen_t; #endif #if !HAVE_WCHAR_T typedef UDWORD wchar_t; #endif #if !HAVE_ATOLL #define atoll atoi #endif #if !HAVE_ISWALNUM #define iswalnum(ucs) (!(ucs & 0xffffff00L) && isalnum (ucs)) #endif #if !HAVE_ISWSPACE #define iswspace(ucs) (!(ucs & 0xffffff00L) && iswspace (ucs)) #endif #define val_t UDWORD #if !ENABLE_FALLBACK_TRANSLIT #define ENABLE_TRANSLIT 1 #endif typedef signed SIZE_1_TYPE SBYTE; typedef signed SIZE_4_TYPE SDWORD; typedef int FD_T; typedef int SOK_T; #ifdef _WIN32 #define sockread(s,p,l) recv (s, (char *) p, l, 0) #define sockwrite(s,p,l) send (s, (char *) p, l, 0) #define sockclose(s) closesocket(s) #define strcasecmp(s,s1) stricmp (s, s1) #define strncasecmp(s,s1,l) strnicmp (s, s1, l) #define __os_has_input kbhit() #define mkdir(a,b) mkdir(a) #define INPUT_BY_POLL 1 #define INPUT_BY_GETCH 1 #define _OS_PREFPATH ".\\" #define _OS_PATHSEP '\\' #define _OS_PATHSEPSTR "\\" #elif defined(__BEOS__) #define sockread(s,p,l) recv (s, p, l, 0) #define sockwrite(s,p,l) send (s, p, l, 0) #define sockclose(s) closesocket (s) #define __os_has_input 1 #define INPUT_BY_POLL 1 #undef INPUT_BY_GETCH #define _OS_PREFPATH NULL #define _OS_PATHSEP '/' #define _OS_PATHSEPSTR "/" #elif defined(__amigaos__) #define sockread(s,p,l) read (s, p, l) #define sockwrite(s,p,l) write (s, p, l) #define sockclose(s) close (s) #undef INPUT_BY_POLL #undef INPUT_BY_GETCH #define __os_has_input UtilIOSelectIs (STDIN_FILENO, READFDS) #define _OS_PREFPATH "/PROGDIR/" #define _OS_PATHSEP '/' #define _OS_PATHSEPSTR "/" #else #define sockread(s,p,l) read (s, p, l) #define sockwrite(s,p,l) write (s, p, l) #define sockclose(s) close (s) #undef INPUT_BY_POLL #undef INPUT_BY_GETCH #define __os_has_input UtilIOSelectIs (STDIN_FILENO, READFDS) #define _OS_PREFPATH NULL #define _OS_PATHSEP '/' #define _OS_PATHSEPSTR "/" #endif #ifndef TRUE #define TRUE 1 #endif #ifndef FALSE #define FALSE 0 #endif #define RET_FAIL 0 #define RET_OK 1 #define RET_DEFER 2 #define RET_INPR 3 #define RET_IS_OK(x) ((x) & 1) #define STR_DOT "\xc2\xb7" #endif /* CLIMM_DATATYPE_H */