sl@0: /* sl@0: * File to have Windows CE Toolkit for VC++ 5.0 working with STLport sl@0: * 09 - 03 - 1999 sl@0: * Origin : Giuseppe Govi - g.govi@iol.it sl@0: */ sl@0: sl@0: #ifndef _STLP_WINCE_H sl@0: #define _STLP_WINCE_H sl@0: sl@0: // this flag is being used by STLport sl@0: # define _STLP_WINCE sl@0: sl@0: #ifndef _MT // Always threaded in CE sl@0: #define _MT sl@0: #endif sl@0: sl@0: #define _STLP_NO_NATIVE_MBSTATE_T sl@0: #define _STLP_NO_TYPEINFO sl@0: #define _STLP_NO_BAD_ALLOC sl@0: #define _STLP_NO_NEW_NEW_HEADER sl@0: #define _STLP_OWN_IOSTREAMS sl@0: sl@0: // tell other parts no threads are there sl@0: # define _STLP_NO_THREADS 1 sl@0: sl@0: // not all new-style headers are available... sl@0: # define _STLP_HAS_NO_NEW_C_HEADERS sl@0: sl@0: # undef _STLP_HAS_NO_EXCEPTIONS sl@0: # define _STLP_HAS_NO_EXCEPTIONS sl@0: # undef _STLP_NO_EXCEPTION_HEADER sl@0: # define _STLP_NO_EXCEPTION_HEADER sl@0: sl@0: // we have to use malloc instead of new sl@0: # undef _STLP_USE_NEWALLOC sl@0: # define _STLP_USE_MALLOC sl@0: sl@0: //# ifdef _STLP_MSVC sl@0: //# pragma warning (disable: 4786) sl@0: //# endif sl@0: sl@0: #ifdef _STLP_WINCE_USE_OUTPUTDEBUGSTRING sl@0: #define _STLP_WINCE_TRACE(msg) OutputDebugString(msg) sl@0: #else sl@0: #define _STLP_WINCE_TRACE(msg) MessageBox(NULL,(msg),NULL,MB_OK) sl@0: #endif sl@0: sl@0: #ifndef __THROW_BAD_ALLOC sl@0: #define __THROW_BAD_ALLOC _STLP_WINCE_TRACE(L"out of memory"); ExitThread(1) sl@0: #endif sl@0: sl@0: #ifndef _SIZE_T_DEFINED sl@0: typedef unsigned int size_t; sl@0: #define _SIZE_T_DEFINED sl@0: #endif sl@0: sl@0: #ifndef _WCHAR_T_DEFINED sl@0: typedef unsigned short wchar_t; sl@0: #define _WCHAR_T_DEFINED sl@0: #endif sl@0: sl@0: #ifndef _TIME_T_DEFINED sl@0: typedef unsigned long time_t; sl@0: #define _TIME_T_DEFINED sl@0: #endif sl@0: sl@0: //ptrdiff_t is not defined in Windows CE SDK sl@0: #ifndef _PTRDIFF_T_DEFINED sl@0: typedef int ptrdiff_t; sl@0: #define _PTRDIFF_T_DEFINED sl@0: #endif sl@0: sl@0: //clock_t is not defined in Windows CE SDK sl@0: #ifndef _CLOCK_T_DEFINED sl@0: typedef long clock_t; sl@0: #define _CLOCK_T_DEFINED sl@0: #endif sl@0: sl@0: //struct tm is not defined in Windows CE SDK sl@0: #ifndef _TM_DEFINED sl@0: struct tm { sl@0: int tm_sec; /* seconds after the minute - [0,59] */ sl@0: int tm_min; /* minutes after the hour - [0,59] */ sl@0: int tm_hour; /* hours since midnight - [0,23] */ sl@0: int tm_mday; /* day of the month - [1,31] */ sl@0: int tm_mon; /* months since January - [0,11] */ sl@0: int tm_year; /* years since 1900 */ sl@0: int tm_wday; /* days since Sunday - [0,6] */ sl@0: int tm_yday; /* days since January 1 - [0,365] */ sl@0: int tm_isdst; /* daylight savings time flag */ sl@0: }; sl@0: #define _TM_DEFINED sl@0: #endif sl@0: sl@0: // Some useful routines that are missing in Windows CE SDK sl@0: #ifdef __cplusplus sl@0: extern "C" sl@0: { sl@0: #endif sl@0: sl@0: char * __cdecl getenv(const char *); sl@0: struct tm * __cdecl gmtime(const time_t *); sl@0: int __cdecl remove(const char *); sl@0: int __cdecl rename(const char *, const char *); sl@0: time_t __cdecl time(time_t *); sl@0: sl@0: #if (_WIN32_WCE < 300) sl@0: char * __cdecl strrchr(const char *, int); sl@0: #endif sl@0: sl@0: #ifdef __cplusplus sl@0: } sl@0: sl@0: #ifndef __PLACEMENT_NEW_INLINE sl@0: inline void *__cdecl operator new(size_t, void *_P) { return (_P); } sl@0: #define __PLACEMENT_NEW_INLINE sl@0: #endif sl@0: sl@0: // Only defined as macros in Windows CE SDK sl@0: #include _STLP_NATIVE_C_HEADER(ctype.h) sl@0: sl@0: #if (_WIN32_WCE < 300) // Only wide chars for older versions sl@0: #define _isctype iswctype sl@0: #endif sl@0: sl@0: inline int (isalpha)(int c) { return _isctype(c, _ALPHA); } sl@0: inline int (isupper)(int c) { return _isctype(c, _UPPER); } sl@0: inline int (islower)(int c) { return _isctype(c, _LOWER); } sl@0: inline int (isdigit)(int c) { return _isctype(c, _DIGIT); } sl@0: inline int (isxdigit)(int c) { return _isctype(c, _HEX); } sl@0: inline int (isspace)(int c) { return _isctype(c, _SPACE); } sl@0: inline int (ispunct)(int c) { return _isctype(c, _PUNCT); } sl@0: inline int (isalnum)(int c) { return _isctype(c, _ALPHA|_DIGIT); } sl@0: inline int (isprint)(int c) { return _isctype(c, _BLANK|_PUNCT|_ALPHA|_DIGIT); } sl@0: inline int (isgraph)(int c) { return _isctype(c, _PUNCT|_ALPHA|_DIGIT); } sl@0: inline int (iscntrl)(int c) { return _isctype(c, _CONTROL); } sl@0: inline int (isascii)(int c) { return ((unsigned)(c) < 0x80); } sl@0: sl@0: #undef _isctype sl@0: sl@0: inline int (iswalpha)(int c) { return iswctype(c, _ALPHA); } sl@0: inline int (iswupper)(int c) { return iswctype(c, _UPPER); } sl@0: inline int (iswlower)(int c) { return iswctype(c, _LOWER); } sl@0: inline int (iswdigit)(int c) { return iswctype(c, _DIGIT); } sl@0: inline int (iswxdigit)(int c) { return iswctype(c, _HEX); } sl@0: inline int (iswspace)(int c) { return iswctype(c, _SPACE); } sl@0: inline int (iswpunct)(int c) { return iswctype(c, _PUNCT); } sl@0: inline int (iswalnum)(int c) { return iswctype(c, _ALPHA|_DIGIT); } sl@0: inline int (iswprint)(int c) { return iswctype(c, _BLANK|_PUNCT|_ALPHA|_DIGIT); } sl@0: inline int (iswgraph)(int c) { return iswctype(c, _PUNCT|_ALPHA|_DIGIT); } sl@0: inline int (iswcntrl)(int c) { return iswctype(c, _CONTROL); } sl@0: inline int (iswascii)(int c) { return ((unsigned)(c) < 0x80); } sl@0: sl@0: #endif /* __cplusplus */ sl@0: sl@0: #if !defined(WIN32_LEAN_AND_MEAN) // Minimise windows includes sl@0: #define WIN32_LEAN_AND_MEAN sl@0: #endif sl@0: #if !defined(VC_EXTRALEAN) sl@0: #define VC_EXTRALEAN sl@0: #endif sl@0: #if !defined(STRICT) sl@0: #define STRICT sl@0: #endif sl@0: #if !defined(NOMINMAX) sl@0: #define NOMINMAX sl@0: #endif sl@0: sl@0: #ifndef __WINDOWS__ sl@0: #include sl@0: #endif sl@0: sl@0: #ifndef _ABORT_DEFINED sl@0: # define _STLP_ABORT() TerminateProcess(GetCurrentProcess(), 0) sl@0: # define _ABORT_DEFINED sl@0: #endif sl@0: sl@0: #ifndef _ASSERT_DEFINED sl@0: # define assert(expr) _STLP_ASSERT(expr) sl@0: # define _ASSERT_DEFINED sl@0: #endif sl@0: sl@0: // they say it's needed sl@0: # include sl@0: sl@0: #endif /* _STLP_WCE_H */ sl@0: sl@0: