sl@0
|
1 |
/*
|
sl@0
|
2 |
* File to have Windows CE Toolkit for VC++ 5.0 working with STLport
|
sl@0
|
3 |
* 09 - 03 - 1999
|
sl@0
|
4 |
* Origin : Giuseppe Govi - g.govi@iol.it
|
sl@0
|
5 |
*/
|
sl@0
|
6 |
|
sl@0
|
7 |
#ifndef _STLP_WINCE_H
|
sl@0
|
8 |
#define _STLP_WINCE_H
|
sl@0
|
9 |
|
sl@0
|
10 |
// this flag is being used by STLport
|
sl@0
|
11 |
# define _STLP_WINCE
|
sl@0
|
12 |
|
sl@0
|
13 |
#ifndef _MT // Always threaded in CE
|
sl@0
|
14 |
#define _MT
|
sl@0
|
15 |
#endif
|
sl@0
|
16 |
|
sl@0
|
17 |
#define _STLP_NO_NATIVE_MBSTATE_T
|
sl@0
|
18 |
#define _STLP_NO_TYPEINFO
|
sl@0
|
19 |
#define _STLP_NO_BAD_ALLOC
|
sl@0
|
20 |
#define _STLP_NO_NEW_NEW_HEADER
|
sl@0
|
21 |
#define _STLP_OWN_IOSTREAMS
|
sl@0
|
22 |
|
sl@0
|
23 |
// tell other parts no threads are there
|
sl@0
|
24 |
# define _STLP_NO_THREADS 1
|
sl@0
|
25 |
|
sl@0
|
26 |
// not all new-style headers are available...
|
sl@0
|
27 |
# define _STLP_HAS_NO_NEW_C_HEADERS
|
sl@0
|
28 |
|
sl@0
|
29 |
# undef _STLP_HAS_NO_EXCEPTIONS
|
sl@0
|
30 |
# define _STLP_HAS_NO_EXCEPTIONS
|
sl@0
|
31 |
# undef _STLP_NO_EXCEPTION_HEADER
|
sl@0
|
32 |
# define _STLP_NO_EXCEPTION_HEADER
|
sl@0
|
33 |
|
sl@0
|
34 |
// we have to use malloc instead of new
|
sl@0
|
35 |
# undef _STLP_USE_NEWALLOC
|
sl@0
|
36 |
# define _STLP_USE_MALLOC
|
sl@0
|
37 |
|
sl@0
|
38 |
//# ifdef _STLP_MSVC
|
sl@0
|
39 |
//# pragma warning (disable: 4786)
|
sl@0
|
40 |
//# endif
|
sl@0
|
41 |
|
sl@0
|
42 |
#ifdef _STLP_WINCE_USE_OUTPUTDEBUGSTRING
|
sl@0
|
43 |
#define _STLP_WINCE_TRACE(msg) OutputDebugString(msg)
|
sl@0
|
44 |
#else
|
sl@0
|
45 |
#define _STLP_WINCE_TRACE(msg) MessageBox(NULL,(msg),NULL,MB_OK)
|
sl@0
|
46 |
#endif
|
sl@0
|
47 |
|
sl@0
|
48 |
#ifndef __THROW_BAD_ALLOC
|
sl@0
|
49 |
#define __THROW_BAD_ALLOC _STLP_WINCE_TRACE(L"out of memory"); ExitThread(1)
|
sl@0
|
50 |
#endif
|
sl@0
|
51 |
|
sl@0
|
52 |
#ifndef _SIZE_T_DEFINED
|
sl@0
|
53 |
typedef unsigned int size_t;
|
sl@0
|
54 |
#define _SIZE_T_DEFINED
|
sl@0
|
55 |
#endif
|
sl@0
|
56 |
|
sl@0
|
57 |
#ifndef _WCHAR_T_DEFINED
|
sl@0
|
58 |
typedef unsigned short wchar_t;
|
sl@0
|
59 |
#define _WCHAR_T_DEFINED
|
sl@0
|
60 |
#endif
|
sl@0
|
61 |
|
sl@0
|
62 |
#ifndef _TIME_T_DEFINED
|
sl@0
|
63 |
typedef unsigned long time_t;
|
sl@0
|
64 |
#define _TIME_T_DEFINED
|
sl@0
|
65 |
#endif
|
sl@0
|
66 |
|
sl@0
|
67 |
//ptrdiff_t is not defined in Windows CE SDK
|
sl@0
|
68 |
#ifndef _PTRDIFF_T_DEFINED
|
sl@0
|
69 |
typedef int ptrdiff_t;
|
sl@0
|
70 |
#define _PTRDIFF_T_DEFINED
|
sl@0
|
71 |
#endif
|
sl@0
|
72 |
|
sl@0
|
73 |
//clock_t is not defined in Windows CE SDK
|
sl@0
|
74 |
#ifndef _CLOCK_T_DEFINED
|
sl@0
|
75 |
typedef long clock_t;
|
sl@0
|
76 |
#define _CLOCK_T_DEFINED
|
sl@0
|
77 |
#endif
|
sl@0
|
78 |
|
sl@0
|
79 |
//struct tm is not defined in Windows CE SDK
|
sl@0
|
80 |
#ifndef _TM_DEFINED
|
sl@0
|
81 |
struct tm {
|
sl@0
|
82 |
int tm_sec; /* seconds after the minute - [0,59] */
|
sl@0
|
83 |
int tm_min; /* minutes after the hour - [0,59] */
|
sl@0
|
84 |
int tm_hour; /* hours since midnight - [0,23] */
|
sl@0
|
85 |
int tm_mday; /* day of the month - [1,31] */
|
sl@0
|
86 |
int tm_mon; /* months since January - [0,11] */
|
sl@0
|
87 |
int tm_year; /* years since 1900 */
|
sl@0
|
88 |
int tm_wday; /* days since Sunday - [0,6] */
|
sl@0
|
89 |
int tm_yday; /* days since January 1 - [0,365] */
|
sl@0
|
90 |
int tm_isdst; /* daylight savings time flag */
|
sl@0
|
91 |
};
|
sl@0
|
92 |
#define _TM_DEFINED
|
sl@0
|
93 |
#endif
|
sl@0
|
94 |
|
sl@0
|
95 |
// Some useful routines that are missing in Windows CE SDK
|
sl@0
|
96 |
#ifdef __cplusplus
|
sl@0
|
97 |
extern "C"
|
sl@0
|
98 |
{
|
sl@0
|
99 |
#endif
|
sl@0
|
100 |
|
sl@0
|
101 |
char * __cdecl getenv(const char *);
|
sl@0
|
102 |
struct tm * __cdecl gmtime(const time_t *);
|
sl@0
|
103 |
int __cdecl remove(const char *);
|
sl@0
|
104 |
int __cdecl rename(const char *, const char *);
|
sl@0
|
105 |
time_t __cdecl time(time_t *);
|
sl@0
|
106 |
|
sl@0
|
107 |
#if (_WIN32_WCE < 300)
|
sl@0
|
108 |
char * __cdecl strrchr(const char *, int);
|
sl@0
|
109 |
#endif
|
sl@0
|
110 |
|
sl@0
|
111 |
#ifdef __cplusplus
|
sl@0
|
112 |
}
|
sl@0
|
113 |
|
sl@0
|
114 |
#ifndef __PLACEMENT_NEW_INLINE
|
sl@0
|
115 |
inline void *__cdecl operator new(size_t, void *_P) { return (_P); }
|
sl@0
|
116 |
#define __PLACEMENT_NEW_INLINE
|
sl@0
|
117 |
#endif
|
sl@0
|
118 |
|
sl@0
|
119 |
// Only defined as macros in Windows CE SDK
|
sl@0
|
120 |
#include _STLP_NATIVE_C_HEADER(ctype.h)
|
sl@0
|
121 |
|
sl@0
|
122 |
#if (_WIN32_WCE < 300) // Only wide chars for older versions
|
sl@0
|
123 |
#define _isctype iswctype
|
sl@0
|
124 |
#endif
|
sl@0
|
125 |
|
sl@0
|
126 |
inline int (isalpha)(int c) { return _isctype(c, _ALPHA); }
|
sl@0
|
127 |
inline int (isupper)(int c) { return _isctype(c, _UPPER); }
|
sl@0
|
128 |
inline int (islower)(int c) { return _isctype(c, _LOWER); }
|
sl@0
|
129 |
inline int (isdigit)(int c) { return _isctype(c, _DIGIT); }
|
sl@0
|
130 |
inline int (isxdigit)(int c) { return _isctype(c, _HEX); }
|
sl@0
|
131 |
inline int (isspace)(int c) { return _isctype(c, _SPACE); }
|
sl@0
|
132 |
inline int (ispunct)(int c) { return _isctype(c, _PUNCT); }
|
sl@0
|
133 |
inline int (isalnum)(int c) { return _isctype(c, _ALPHA|_DIGIT); }
|
sl@0
|
134 |
inline int (isprint)(int c) { return _isctype(c, _BLANK|_PUNCT|_ALPHA|_DIGIT); }
|
sl@0
|
135 |
inline int (isgraph)(int c) { return _isctype(c, _PUNCT|_ALPHA|_DIGIT); }
|
sl@0
|
136 |
inline int (iscntrl)(int c) { return _isctype(c, _CONTROL); }
|
sl@0
|
137 |
inline int (isascii)(int c) { return ((unsigned)(c) < 0x80); }
|
sl@0
|
138 |
|
sl@0
|
139 |
#undef _isctype
|
sl@0
|
140 |
|
sl@0
|
141 |
inline int (iswalpha)(int c) { return iswctype(c, _ALPHA); }
|
sl@0
|
142 |
inline int (iswupper)(int c) { return iswctype(c, _UPPER); }
|
sl@0
|
143 |
inline int (iswlower)(int c) { return iswctype(c, _LOWER); }
|
sl@0
|
144 |
inline int (iswdigit)(int c) { return iswctype(c, _DIGIT); }
|
sl@0
|
145 |
inline int (iswxdigit)(int c) { return iswctype(c, _HEX); }
|
sl@0
|
146 |
inline int (iswspace)(int c) { return iswctype(c, _SPACE); }
|
sl@0
|
147 |
inline int (iswpunct)(int c) { return iswctype(c, _PUNCT); }
|
sl@0
|
148 |
inline int (iswalnum)(int c) { return iswctype(c, _ALPHA|_DIGIT); }
|
sl@0
|
149 |
inline int (iswprint)(int c) { return iswctype(c, _BLANK|_PUNCT|_ALPHA|_DIGIT); }
|
sl@0
|
150 |
inline int (iswgraph)(int c) { return iswctype(c, _PUNCT|_ALPHA|_DIGIT); }
|
sl@0
|
151 |
inline int (iswcntrl)(int c) { return iswctype(c, _CONTROL); }
|
sl@0
|
152 |
inline int (iswascii)(int c) { return ((unsigned)(c) < 0x80); }
|
sl@0
|
153 |
|
sl@0
|
154 |
#endif /* __cplusplus */
|
sl@0
|
155 |
|
sl@0
|
156 |
#if !defined(WIN32_LEAN_AND_MEAN) // Minimise windows includes
|
sl@0
|
157 |
#define WIN32_LEAN_AND_MEAN
|
sl@0
|
158 |
#endif
|
sl@0
|
159 |
#if !defined(VC_EXTRALEAN)
|
sl@0
|
160 |
#define VC_EXTRALEAN
|
sl@0
|
161 |
#endif
|
sl@0
|
162 |
#if !defined(STRICT)
|
sl@0
|
163 |
#define STRICT
|
sl@0
|
164 |
#endif
|
sl@0
|
165 |
#if !defined(NOMINMAX)
|
sl@0
|
166 |
#define NOMINMAX
|
sl@0
|
167 |
#endif
|
sl@0
|
168 |
|
sl@0
|
169 |
#ifndef __WINDOWS__
|
sl@0
|
170 |
#include <windows.h>
|
sl@0
|
171 |
#endif
|
sl@0
|
172 |
|
sl@0
|
173 |
#ifndef _ABORT_DEFINED
|
sl@0
|
174 |
# define _STLP_ABORT() TerminateProcess(GetCurrentProcess(), 0)
|
sl@0
|
175 |
# define _ABORT_DEFINED
|
sl@0
|
176 |
#endif
|
sl@0
|
177 |
|
sl@0
|
178 |
#ifndef _ASSERT_DEFINED
|
sl@0
|
179 |
# define assert(expr) _STLP_ASSERT(expr)
|
sl@0
|
180 |
# define _ASSERT_DEFINED
|
sl@0
|
181 |
#endif
|
sl@0
|
182 |
|
sl@0
|
183 |
// they say it's needed
|
sl@0
|
184 |
# include <windows.h>
|
sl@0
|
185 |
|
sl@0
|
186 |
#endif /* _STLP_WCE_H */
|
sl@0
|
187 |
|
sl@0
|
188 |
|