updated os2 project files

This commit is contained in:
hyung-hwan 2012-01-11 14:28:59 +00:00
parent a3eed193d5
commit 60ad0283bc
8 changed files with 647 additions and 465 deletions

View File

@ -82,29 +82,29 @@
# define QSE_WRITE(handle,buf,size) write(handle,buf,size) # define QSE_WRITE(handle,buf,size) write(handle,buf,size)
#endif #endif
#if !defined(_LP64) && defined(SYS__llseek) #if !defined(_LP64) && (QSE_SIZEOF_VOID_P<8) && defined(SYS__llseek)
# define QSE_LLSEEK(handle,hoffset,loffset,out,whence) syscall(SYS__llseek,handle,hoffset,loffset,out,whence) # define QSE_LLSEEK(handle,hoffset,loffset,out,whence) syscall(SYS__llseek,handle,hoffset,loffset,out,whence)
#elif !defined(_LP64) && defined(HAVE__LLSEEK) #elif !defined(_LP64) && (QSE_SIZEOF_VOID_P<8) && defined(HAVE__LLSEEK)
# define QSE_LLSEEK(handle,hoffset,loffset,out,whence) _llseek(handle,hoffset,loffset,out,whence) # define QSE_LLSEEK(handle,hoffset,loffset,out,whence) _llseek(handle,hoffset,loffset,out,whence)
#endif #endif
#if !defined(_LP64) && defined(SYS_lseek64) #if !defined(_LP64) && (QSE_SIZEOF_VOID_P<8) && defined(SYS_lseek64)
# define QSE_LSEEK(handle,offset,whence) syscall(SYS_lseek64,handle,offset,whence) # define QSE_LSEEK(handle,offset,whence) syscall(SYS_lseek64,handle,offset,whence)
#elif defined(SYS_lseek) #elif defined(SYS_lseek)
# define QSE_LSEEK(handle,offset,whence) syscall(SYS_lseek,handle,offset,whence) # define QSE_LSEEK(handle,offset,whence) syscall(SYS_lseek,handle,offset,whence)
#elif !defined(_LP64) && defined(HAVE_LSEEK64) #elif !defined(_LP64) && (QSE_SIZEOF_VOID_P<8) && defined(HAVE_LSEEK64)
# define QSE_LSEEK(handle,offset,whence) lseek64(handle,offset,whence) # define QSE_LSEEK(handle,offset,whence) lseek64(handle,offset,whence)
#else #else
# define QSE_LSEEK(handle,offset,whence) lseek(handle,offset,whence) # define QSE_LSEEK(handle,offset,whence) lseek(handle,offset,whence)
#endif #endif
#if !defined(_LP64) && defined(SYS_fstat64) #if !defined(_LP64) && (QSE_SIZEOF_VOID_P<8) && defined(SYS_fstat64)
# define QSE_FSTAT(path,stbuf) syscall(SYS_fstat,path,stbuf) # define QSE_FSTAT(path,stbuf) syscall(SYS_fstat64,path,stbuf)
typedef struct stat64 qse_fstat_t; typedef struct stat64 qse_fstat_t;
#elif defined(SYS_fstat) #elif defined(SYS_fstat)
# define QSE_FSTAT(path,stbuf) syscall(SYS_fstat,path,stbuf) # define QSE_FSTAT(path,stbuf) syscall(SYS_fstat,path,stbuf)
typedef struct stat qse_fstat_t; typedef struct stat qse_fstat_t;
#elif !defined(_LP64) && defined(HAVE_FSTAT64) #elif !defined(_LP64) && (QSE_SIZEOF_VOID_P<8) && defined(HAVE_FSTAT64)
# define QSE_FSTAT(path,stbuf) fstat64(path,stbuf) # define QSE_FSTAT(path,stbuf) fstat64(path,stbuf)
typedef struct stat64 qse_fstat_t; typedef struct stat64 qse_fstat_t;
#else #else
@ -112,11 +112,11 @@
typedef struct stat qse_fstat_t; typedef struct stat qse_fstat_t;
#endif #endif
#if !defined(_LP64) && defined(SYS_ftruncate64) #if !defined(_LP64) && (QSE_SIZEOF_VOID_P<8) && defined(SYS_ftruncate64)
# define QSE_FTRUNCATE(handle,size) syscall(SYS_ftruncate64,handle,size) # define QSE_FTRUNCATE(handle,size) syscall(SYS_ftruncate64,handle,size)
#elif defined(SYS_ftruncate) #elif defined(SYS_ftruncate)
# define QSE_FTRUNCATE(handle,size) syscall(SYS_ftruncate,handle,size) # define QSE_FTRUNCATE(handle,size) syscall(SYS_ftruncate,handle,size)
#elif !defined(_LP64) && defined(HAVE_FTRUNCATE64) #elif !defined(_LP64) && (QSE_SIZEOF_VOID_P<8) && defined(HAVE_FTRUNCATE64)
# define QSE_FTRUNCATE(handle,size) ftruncate64(handle,size) # define QSE_FTRUNCATE(handle,size) ftruncate64(handle,size)
#else #else
# define QSE_FTRUNCATE(handle,size) ftruncate(handle,size) # define QSE_FTRUNCATE(handle,size) ftruncate(handle,size)
@ -275,13 +275,13 @@
# define QSE_LINK(oldpath,newpath) link(oldpath,newpath) # define QSE_LINK(oldpath,newpath) link(oldpath,newpath)
#endif #endif
#if !defined(_LP64) && defined(SYS_lstat64) #if !defined(_LP64) && (QSE_SIZEOF_VOID_P<8) && defined(SYS_lstat64)
# define QSE_LSTAT(path,stbuf) syscall(SYS_lstat,path,stbuf) # define QSE_LSTAT(path,stbuf) syscall(SYS_lstat,path,stbuf)
typedef struct stat64 qse_lstat_t; typedef struct stat64 qse_lstat_t;
#elif defined(SYS_lstat) #elif defined(SYS_lstat)
# define QSE_LSTAT(path,stbuf) syscall(SYS_lstat,path,stbuf) # define QSE_LSTAT(path,stbuf) syscall(SYS_lstat,path,stbuf)
typedef struct stat qse_lstat_t; typedef struct stat qse_lstat_t;
#elif !defined(_LP64) && defined(HAVE_LSTAT64) #elif !defined(_LP64) && (QSE_SIZEOF_VOID_P<8) && defined(HAVE_LSTAT64)
# define QSE_LSTAT(path,stbuf) lstat64(path,stbuf) # define QSE_LSTAT(path,stbuf) lstat64(path,stbuf)
typedef struct stat64 qse_lstat_t; typedef struct stat64 qse_lstat_t;
#else #else
@ -302,13 +302,13 @@
# define QSE_RMDIR(path) rmdir(path) # define QSE_RMDIR(path) rmdir(path)
#endif #endif
#if !defined(_LP64) && defined(SYS_stat64) #if !defined(_LP64) && (QSE_SIZEOF_VOID_P<8) && defined(SYS_stat64)
# define QSE_STAT(path,stbuf) syscall(SYS_stat64,path,stbuf) # define QSE_STAT(path,stbuf) syscall(SYS_stat64,path,stbuf)
typedef struct stat64 qse_stat_t; typedef struct stat64 qse_stat_t;
#elif defined(SYS_stat) #elif defined(SYS_stat)
# define QSE_STAT(path,stbuf) syscall(SYS_stat,path,stbuf) # define QSE_STAT(path,stbuf) syscall(SYS_stat,path,stbuf)
typedef struct stat qse_stat_t; typedef struct stat qse_stat_t;
#elif !defined(_LP64) && defined(HAVE_STAT64) #elif !defined(_LP64) && (QSE_SIZEOF_VOID_P<8) && defined(HAVE_STAT64)
# define QSE_STAT(path,stbuf) stat64(path,stbuf) # define QSE_STAT(path,stbuf) stat64(path,stbuf)
typedef struct stat64 qse_stat_t; typedef struct stat64 qse_stat_t;
#else #else

View File

@ -36,10 +36,18 @@
#define MAX_SEND_SIZE 4096 #define MAX_SEND_SIZE 4096
#ifdef HAVE_SYS_SENDFILE_H #if defined(HAVE_SYS_SENDFILE_H)
# include <sys/sendfile.h> # include <sys/sendfile.h>
# if !defined(_LP64) && (QSE_SIZEOF_VOID_P<8) && defined(HAVE_SENDFILE64)
# define xsendfile sendfile64
# else
# define xsendfile sendfile
# endif
#else #else
static qse_ssize_t sendfile (
static qse_ssize_t xsendfile (
int out_fd, int in_fd, qse_foff_t* offset, qse_size_t count) int out_fd, int in_fd, qse_foff_t* offset, qse_size_t count)
{ {
qse_mchar_t buf[MAX_SEND_SIZE]; qse_mchar_t buf[MAX_SEND_SIZE];
@ -389,7 +397,7 @@ static int task_main_file (
if (count >= ctx->left) count = ctx->left; if (count >= ctx->left) count = ctx->left;
/* TODO: more adjustment needed for OS with different sendfile semantics... */ /* TODO: more adjustment needed for OS with different sendfile semantics... */
n = sendfile ( n = xsendfile (
client->handle.i, client->handle.i,
ctx->handle.i, ctx->handle.i,
&ctx->offset, &ctx->offset,
@ -978,8 +986,10 @@ qse_printf (QSE_T("READING CHUNKED MODE...\n"));
} }
/* set the chunk length */ /* set the chunk length */
snprintf (chunklen, QSE_COUNTOF(chunklen), QSE_MT("%-4lX\r\n"), n); snprintf (chunklen, QSE_COUNTOF(chunklen),
QSE_MEMCPY (&cgi->buf[cgi->buflen], chunklen, QSE_SIZEOF(chunklen) - 1); QSE_MT("%-4lX\r\n"), (unsigned long)n);
QSE_MEMCPY (&cgi->buf[cgi->buflen],
chunklen, QSE_SIZEOF(chunklen) - 1);
cgi->buflen += QSE_SIZEOF(chunklen) - 1 + n; cgi->buflen += QSE_SIZEOF(chunklen) - 1 + n;
/* set the trailing CR & LF for a chunk */ /* set the trailing CR & LF for a chunk */

View File

@ -4,7 +4,13 @@
#include <qse/cmn/main.h> #include <qse/cmn/main.h>
#include <qse/cmn/str.h> #include <qse/cmn/str.h>
#include <qse/cmn/mem.h> #include <qse/cmn/mem.h>
#include <qse/cmn/mbwc.h>
#include <signal.h> #include <signal.h>
#include <locale.h>
#if defined(_WIN32)
# include <windows.h>
#endif
#define MAX_SENDFILE_SIZE 4096 #define MAX_SENDFILE_SIZE 4096
typedef struct httpd_xtn_t httpd_xtn_t; typedef struct httpd_xtn_t httpd_xtn_t;
@ -168,7 +174,6 @@ int httpd_main (int argc, qse_char_t* argv[])
return -1; return -1;
} }
httpd = qse_httpd_open (QSE_MMGR_GETDFL(), QSE_SIZEOF(httpd_xtn_t)); httpd = qse_httpd_open (QSE_MMGR_GETDFL(), QSE_SIZEOF(httpd_xtn_t));
if (httpd == QSE_NULL) if (httpd == QSE_NULL)
{ {
@ -196,12 +201,35 @@ int httpd_main (int argc, qse_char_t* argv[])
signal (SIGINT, SIG_DFL); signal (SIGINT, SIG_DFL);
signal (SIGPIPE, SIG_DFL); signal (SIGPIPE, SIG_DFL);
if (n <= -1)
{
qse_fprintf (QSE_STDERR, QSE_T("Httpd error\n"));
}
qse_httpd_close (httpd); qse_httpd_close (httpd);
return n; return n;
} }
int qse_main (int argc, qse_achar_t* argv[]) int qse_main (int argc, qse_achar_t* argv[])
{ {
#if defined(_WIN32)
char locale[100];
UINT codepage = GetConsoleOutputCP();
if (codepage == CP_UTF8)
{
/*SetConsoleOUtputCP (CP_UTF8);*/
qse_setdflcmgr (qse_utf8cmgr);
}
else
{
sprintf (locale, ".%u", (unsigned int)codepage);
setlocale (LC_ALL, locale);
qse_setdflcmgr (qse_slmbcmgr);
}
#else
setlocale (LC_ALL, "");
qse_setdflcmgr (qse_slmbcmgr);
#endif
return qse_runmain (argc, argv, httpd_main); return qse_runmain (argc, argv, httpd_main);
} }

View File

@ -42,7 +42,7 @@ WVList
0 0
10 10
WPickList WPickList
72 74
11 11
MItem MItem
3 3
@ -167,8 +167,8 @@ WVList
0 0
39 39
MItem MItem
32 28
../../../../../lib/cmn/chr-cnv.c ../../../../../lib/cmn/chr.c
40 40
WString WString
4 4
@ -186,7 +186,7 @@ WVList
43 43
MItem MItem
28 28
../../../../../lib/cmn/chr.c ../../../../../lib/cmn/dll.c
44 44
WString WString
4 4
@ -204,7 +204,7 @@ WVList
47 47
MItem MItem
28 28
../../../../../lib/cmn/dll.c ../../../../../lib/cmn/env.c
48 48
WString WString
4 4
@ -222,7 +222,7 @@ WVList
51 51
MItem MItem
28 28
../../../../../lib/cmn/env.c ../../../../../lib/cmn/fio.c
52 52
WString WString
4 4
@ -240,7 +240,7 @@ WVList
55 55
MItem MItem
28 28
../../../../../lib/cmn/fio.c ../../../../../lib/cmn/fma.c
56 56
WString WString
4 4
@ -258,7 +258,7 @@ WVList
59 59
MItem MItem
28 28
../../../../../lib/cmn/fma.c ../../../../../lib/cmn/fmt.c
60 60
WString WString
4 4
@ -276,7 +276,7 @@ WVList
63 63
MItem MItem
28 28
../../../../../lib/cmn/fmt.c ../../../../../lib/cmn/gdl.c
64 64
WString WString
4 4
@ -294,7 +294,7 @@ WVList
67 67
MItem MItem
28 28
../../../../../lib/cmn/gdl.c ../../../../../lib/cmn/htb.c
68 68
WString WString
4 4
@ -312,7 +312,7 @@ WVList
71 71
MItem MItem
28 28
../../../../../lib/cmn/htb.c ../../../../../lib/cmn/lda.c
72 72
WString WString
4 4
@ -329,8 +329,8 @@ WVList
0 0
75 75
MItem MItem
28 29
../../../../../lib/cmn/lda.c ../../../../../lib/cmn/main.c
76 76
WString WString
4 4
@ -347,8 +347,8 @@ WVList
0 0
79 79
MItem MItem
29 33
../../../../../lib/cmn/main.c ../../../../../lib/cmn/mbwc-str.c
80 80
WString WString
4 4
@ -365,8 +365,8 @@ WVList
0 0
83 83
MItem MItem
28 29
../../../../../lib/cmn/mem.c ../../../../../lib/cmn/mbwc.c
84 84
WString WString
4 4
@ -384,7 +384,7 @@ WVList
87 87
MItem MItem
28 28
../../../../../lib/cmn/oht.c ../../../../../lib/cmn/mem.c
88 88
WString WString
4 4
@ -402,7 +402,7 @@ WVList
91 91
MItem MItem
28 28
../../../../../lib/cmn/opt.c ../../../../../lib/cmn/oht.c
92 92
WString WString
4 4
@ -419,8 +419,8 @@ WVList
0 0
95 95
MItem MItem
38 28
../../../../../lib/cmn/path-basename.c ../../../../../lib/cmn/opt.c
96 96
WString WString
4 4
@ -437,8 +437,8 @@ WVList
0 0
99 99
MItem MItem
35 38
../../../../../lib/cmn/path-canon.c ../../../../../lib/cmn/path-basename.c
100 100
WString WString
4 4
@ -455,8 +455,8 @@ WVList
0 0
103 103
MItem MItem
28 35
../../../../../lib/cmn/pio.c ../../../../../lib/cmn/path-canon.c
104 104
WString WString
4 4
@ -474,7 +474,7 @@ WVList
107 107
MItem MItem
28 28
../../../../../lib/cmn/pma.c ../../../../../lib/cmn/pio.c
108 108
WString WString
4 4
@ -492,7 +492,7 @@ WVList
111 111
MItem MItem
28 28
../../../../../lib/cmn/rbt.c ../../../../../lib/cmn/pma.c
112 112
WString WString
4 4
@ -510,7 +510,7 @@ WVList
115 115
MItem MItem
28 28
../../../../../lib/cmn/rex.c ../../../../../lib/cmn/rbt.c
116 116
WString WString
4 4
@ -528,7 +528,7 @@ WVList
119 119
MItem MItem
28 28
../../../../../lib/cmn/sio.c ../../../../../lib/cmn/rex.c
120 120
WString WString
4 4
@ -546,7 +546,7 @@ WVList
123 123
MItem MItem
28 28
../../../../../lib/cmn/sll.c ../../../../../lib/cmn/sio.c
124 124
WString WString
4 4
@ -563,8 +563,8 @@ WVList
0 0
127 127
MItem MItem
30 28
../../../../../lib/cmn/stdio.c ../../../../../lib/cmn/sll.c
128 128
WString WString
4 4
@ -581,8 +581,8 @@ WVList
0 0
131 131
MItem MItem
32 29
../../../../../lib/cmn/str-beg.c ../../../../../lib/cmn/slmb.c
132 132
WString WString
4 4
@ -599,8 +599,8 @@ WVList
0 0
135 135
MItem MItem
32 30
../../../../../lib/cmn/str-cat.c ../../../../../lib/cmn/stdio.c
136 136
WString WString
4 4
@ -618,7 +618,7 @@ WVList
139 139
MItem MItem
32 32
../../../../../lib/cmn/str-chr.c ../../../../../lib/cmn/str-beg.c
140 140
WString WString
4 4
@ -636,7 +636,7 @@ WVList
143 143
MItem MItem
32 32
../../../../../lib/cmn/str-cmp.c ../../../../../lib/cmn/str-cat.c
144 144
WString WString
4 4
@ -654,7 +654,7 @@ WVList
147 147
MItem MItem
32 32
../../../../../lib/cmn/str-cnv.c ../../../../../lib/cmn/str-chr.c
148 148
WString WString
4 4
@ -672,7 +672,7 @@ WVList
151 151
MItem MItem
32 32
../../../../../lib/cmn/str-cpy.c ../../../../../lib/cmn/str-cmp.c
152 152
WString WString
4 4
@ -690,7 +690,7 @@ WVList
155 155
MItem MItem
32 32
../../../../../lib/cmn/str-del.c ../../../../../lib/cmn/str-cnv.c
156 156
WString WString
4 4
@ -708,7 +708,7 @@ WVList
159 159
MItem MItem
32 32
../../../../../lib/cmn/str-dup.c ../../../../../lib/cmn/str-cpy.c
160 160
WString WString
4 4
@ -725,8 +725,8 @@ WVList
0 0
163 163
MItem MItem
33 32
../../../../../lib/cmn/str-dynm.c ../../../../../lib/cmn/str-del.c
164 164
WString WString
4 4
@ -743,8 +743,8 @@ WVList
0 0
167 167
MItem MItem
33 32
../../../../../lib/cmn/str-dynw.c ../../../../../lib/cmn/str-dup.c
168 168
WString WString
4 4
@ -761,8 +761,8 @@ WVList
0 0
171 171
MItem MItem
32 33
../../../../../lib/cmn/str-end.c ../../../../../lib/cmn/str-dynm.c
172 172
WString WString
4 4
@ -780,7 +780,7 @@ WVList
175 175
MItem MItem
33 33
../../../../../lib/cmn/str-excl.c ../../../../../lib/cmn/str-dynw.c
176 176
WString WString
4 4
@ -797,8 +797,8 @@ WVList
0 0
179 179
MItem MItem
33 32
../../../../../lib/cmn/str-fcpy.c ../../../../../lib/cmn/str-end.c
180 180
WString WString
4 4
@ -816,7 +816,7 @@ WVList
183 183
MItem MItem
33 33
../../../../../lib/cmn/str-incl.c ../../../../../lib/cmn/str-excl.c
184 184
WString WString
4 4
@ -833,8 +833,8 @@ WVList
0 0
187 187
MItem MItem
32 33
../../../../../lib/cmn/str-len.c ../../../../../lib/cmn/str-fcpy.c
188 188
WString WString
4 4
@ -851,8 +851,8 @@ WVList
0 0
191 191
MItem MItem
32 33
../../../../../lib/cmn/str-pac.c ../../../../../lib/cmn/str-incl.c
192 192
WString WString
4 4
@ -869,8 +869,8 @@ WVList
0 0
195 195
MItem MItem
33 32
../../../../../lib/cmn/str-pbrk.c ../../../../../lib/cmn/str-len.c
196 196
WString WString
4 4
@ -888,7 +888,7 @@ WVList
199 199
MItem MItem
32 32
../../../../../lib/cmn/str-put.c ../../../../../lib/cmn/str-pac.c
200 200
WString WString
4 4
@ -905,8 +905,8 @@ WVList
0 0
203 203
MItem MItem
32 33
../../../../../lib/cmn/str-rev.c ../../../../../lib/cmn/str-pbrk.c
204 204
WString WString
4 4
@ -924,7 +924,7 @@ WVList
207 207
MItem MItem
32 32
../../../../../lib/cmn/str-rot.c ../../../../../lib/cmn/str-put.c
208 208
WString WString
4 4
@ -942,7 +942,7 @@ WVList
211 211
MItem MItem
32 32
../../../../../lib/cmn/str-set.c ../../../../../lib/cmn/str-rev.c
212 212
WString WString
4 4
@ -960,7 +960,7 @@ WVList
215 215
MItem MItem
32 32
../../../../../lib/cmn/str-spl.c ../../../../../lib/cmn/str-rot.c
216 216
WString WString
4 4
@ -978,7 +978,7 @@ WVList
219 219
MItem MItem
32 32
../../../../../lib/cmn/str-spn.c ../../../../../lib/cmn/str-set.c
220 220
WString WString
4 4
@ -996,7 +996,7 @@ WVList
223 223
MItem MItem
32 32
../../../../../lib/cmn/str-str.c ../../../../../lib/cmn/str-spl.c
224 224
WString WString
4 4
@ -1013,8 +1013,8 @@ WVList
0 0
227 227
MItem MItem
34 32
../../../../../lib/cmn/str-subst.c ../../../../../lib/cmn/str-spn.c
228 228
WString WString
4 4
@ -1032,7 +1032,7 @@ WVList
231 231
MItem MItem
32 32
../../../../../lib/cmn/str-tok.c ../../../../../lib/cmn/str-str.c
232 232
WString WString
4 4
@ -1049,8 +1049,8 @@ WVList
0 0
235 235
MItem MItem
32 34
../../../../../lib/cmn/str-trm.c ../../../../../lib/cmn/str-subst.c
236 236
WString WString
4 4
@ -1067,8 +1067,8 @@ WVList
0 0
239 239
MItem MItem
33 32
../../../../../lib/cmn/str-word.c ../../../../../lib/cmn/str-tok.c
240 240
WString WString
4 4
@ -1085,8 +1085,8 @@ WVList
0 0
243 243
MItem MItem
29 32
../../../../../lib/cmn/time.c ../../../../../lib/cmn/str-trm.c
244 244
WString WString
4 4
@ -1103,8 +1103,8 @@ WVList
0 0
247 247
MItem MItem
32 33
../../../../../lib/cmn/tio-get.c ../../../../../lib/cmn/str-word.c
248 248
WString WString
4 4
@ -1121,8 +1121,8 @@ WVList
0 0
251 251
MItem MItem
32 29
../../../../../lib/cmn/tio-put.c ../../../../../lib/cmn/time.c
252 252
WString WString
4 4
@ -1139,8 +1139,8 @@ WVList
0 0
255 255
MItem MItem
28 32
../../../../../lib/cmn/tio.c ../../../../../lib/cmn/tio-get.c
256 256
WString WString
4 4
@ -1158,7 +1158,7 @@ WVList
259 259
MItem MItem
32 32
../../../../../lib/cmn/tre-ast.c ../../../../../lib/cmn/tio-put.c
260 260
WString WString
4 4
@ -1175,8 +1175,8 @@ WVList
0 0
263 263
MItem MItem
36 28
../../../../../lib/cmn/tre-compile.c ../../../../../lib/cmn/tio.c
264 264
WString WString
4 4
@ -1193,8 +1193,8 @@ WVList
0 0
267 267
MItem MItem
44 32
../../../../../lib/cmn/tre-match-backtrack.c ../../../../../lib/cmn/tre-ast.c
268 268
WString WString
4 4
@ -1211,8 +1211,8 @@ WVList
0 0
271 271
MItem MItem
43 36
../../../../../lib/cmn/tre-match-parallel.c ../../../../../lib/cmn/tre-compile.c
272 272
WString WString
4 4
@ -1229,8 +1229,8 @@ WVList
0 0
275 275
MItem MItem
34 44
../../../../../lib/cmn/tre-parse.c ../../../../../lib/cmn/tre-match-backtrack.c
276 276
WString WString
4 4
@ -1247,8 +1247,8 @@ WVList
0 0
279 279
MItem MItem
34 43
../../../../../lib/cmn/tre-stack.c ../../../../../lib/cmn/tre-match-parallel.c
280 280
WString WString
4 4
@ -1265,8 +1265,8 @@ WVList
0 0
283 283
MItem MItem
28 34
../../../../../lib/cmn/tre.c ../../../../../lib/cmn/tre-parse.c
284 284
WString WString
4 4
@ -1283,8 +1283,8 @@ WVList
0 0
287 287
MItem MItem
29 34
../../../../../lib/cmn/utf8.c ../../../../../lib/cmn/tre-stack.c
288 288
WString WString
4 4
@ -1302,7 +1302,7 @@ WVList
291 291
MItem MItem
28 28
../../../../../lib/cmn/xma.c ../../../../../lib/cmn/tre.c
292 292
WString WString
4 4
@ -1319,44 +1319,44 @@ WVList
0 0
295 295
MItem MItem
3 29
*.h ../../../../../lib/cmn/utf8.c
296 296
WString WString
3 4
NIL COBJ
297 297
WVList WVList
0 0
298 298
WVList WVList
0 0
-1 11
1 1
1 1
0 0
299 299
MItem MItem
28 28
../../../../../lib/cmn/mem.h ../../../../../lib/cmn/xma.c
300 300
WString WString
3 4
NIL COBJ
301 301
WVList WVList
0 0
302 302
WVList WVList
0 0
295 11
1 1
1 1
0 0
303 303
MItem MItem
32 3
../../../../../lib/cmn/syscall.h *.h
304 304
WString WString
3 3
@ -1367,7 +1367,43 @@ WVList
306 306
WVList WVList
0 0
295 -1
1
1
0
307
MItem
28
../../../../../lib/cmn/mem.h
308
WString
3
NIL
309
WVList
0
310
WVList
0
303
1
1
0
311
MItem
32
../../../../../lib/cmn/syscall.h
312
WString
3
NIL
313
WVList
0
314
WVList
0
303
1 1
1 1
0 0

View File

@ -42,7 +42,7 @@ WVList
0 0
10 10
WPickList WPickList
72 74
11 11
MItem MItem
3 3
@ -179,8 +179,8 @@ WVList
0 0
42 42
MItem MItem
32 28
../../../../../lib/cmn/chr-cnv.c ../../../../../lib/cmn/chr.c
43 43
WString WString
4 4
@ -198,7 +198,7 @@ WVList
46 46
MItem MItem
28 28
../../../../../lib/cmn/chr.c ../../../../../lib/cmn/dll.c
47 47
WString WString
4 4
@ -216,7 +216,7 @@ WVList
50 50
MItem MItem
28 28
../../../../../lib/cmn/dll.c ../../../../../lib/cmn/env.c
51 51
WString WString
4 4
@ -234,7 +234,7 @@ WVList
54 54
MItem MItem
28 28
../../../../../lib/cmn/env.c ../../../../../lib/cmn/fio.c
55 55
WString WString
4 4
@ -252,7 +252,7 @@ WVList
58 58
MItem MItem
28 28
../../../../../lib/cmn/fio.c ../../../../../lib/cmn/fma.c
59 59
WString WString
4 4
@ -270,7 +270,7 @@ WVList
62 62
MItem MItem
28 28
../../../../../lib/cmn/fma.c ../../../../../lib/cmn/fmt.c
63 63
WString WString
4 4
@ -288,7 +288,7 @@ WVList
66 66
MItem MItem
28 28
../../../../../lib/cmn/fmt.c ../../../../../lib/cmn/gdl.c
67 67
WString WString
4 4
@ -306,7 +306,7 @@ WVList
70 70
MItem MItem
28 28
../../../../../lib/cmn/gdl.c ../../../../../lib/cmn/htb.c
71 71
WString WString
4 4
@ -324,7 +324,7 @@ WVList
74 74
MItem MItem
28 28
../../../../../lib/cmn/htb.c ../../../../../lib/cmn/lda.c
75 75
WString WString
4 4
@ -341,8 +341,8 @@ WVList
0 0
78 78
MItem MItem
28 29
../../../../../lib/cmn/lda.c ../../../../../lib/cmn/main.c
79 79
WString WString
4 4
@ -359,8 +359,8 @@ WVList
0 0
82 82
MItem MItem
29 33
../../../../../lib/cmn/main.c ../../../../../lib/cmn/mbwc-str.c
83 83
WString WString
4 4
@ -377,8 +377,8 @@ WVList
0 0
86 86
MItem MItem
28 29
../../../../../lib/cmn/mem.c ../../../../../lib/cmn/mbwc.c
87 87
WString WString
4 4
@ -396,7 +396,7 @@ WVList
90 90
MItem MItem
28 28
../../../../../lib/cmn/oht.c ../../../../../lib/cmn/mem.c
91 91
WString WString
4 4
@ -414,7 +414,7 @@ WVList
94 94
MItem MItem
28 28
../../../../../lib/cmn/opt.c ../../../../../lib/cmn/oht.c
95 95
WString WString
4 4
@ -431,8 +431,8 @@ WVList
0 0
98 98
MItem MItem
38 28
../../../../../lib/cmn/path-basename.c ../../../../../lib/cmn/opt.c
99 99
WString WString
4 4
@ -449,8 +449,8 @@ WVList
0 0
102 102
MItem MItem
35 38
../../../../../lib/cmn/path-canon.c ../../../../../lib/cmn/path-basename.c
103 103
WString WString
4 4
@ -467,8 +467,8 @@ WVList
0 0
106 106
MItem MItem
28 35
../../../../../lib/cmn/pio.c ../../../../../lib/cmn/path-canon.c
107 107
WString WString
4 4
@ -486,7 +486,7 @@ WVList
110 110
MItem MItem
28 28
../../../../../lib/cmn/pma.c ../../../../../lib/cmn/pio.c
111 111
WString WString
4 4
@ -504,7 +504,7 @@ WVList
114 114
MItem MItem
28 28
../../../../../lib/cmn/rbt.c ../../../../../lib/cmn/pma.c
115 115
WString WString
4 4
@ -522,7 +522,7 @@ WVList
118 118
MItem MItem
28 28
../../../../../lib/cmn/rex.c ../../../../../lib/cmn/rbt.c
119 119
WString WString
4 4
@ -540,7 +540,7 @@ WVList
122 122
MItem MItem
28 28
../../../../../lib/cmn/sio.c ../../../../../lib/cmn/rex.c
123 123
WString WString
4 4
@ -558,7 +558,7 @@ WVList
126 126
MItem MItem
28 28
../../../../../lib/cmn/sll.c ../../../../../lib/cmn/sio.c
127 127
WString WString
4 4
@ -575,8 +575,8 @@ WVList
0 0
130 130
MItem MItem
30 28
../../../../../lib/cmn/stdio.c ../../../../../lib/cmn/sll.c
131 131
WString WString
4 4
@ -593,8 +593,8 @@ WVList
0 0
134 134
MItem MItem
32 29
../../../../../lib/cmn/str-beg.c ../../../../../lib/cmn/slmb.c
135 135
WString WString
4 4
@ -611,8 +611,8 @@ WVList
0 0
138 138
MItem MItem
32 30
../../../../../lib/cmn/str-cat.c ../../../../../lib/cmn/stdio.c
139 139
WString WString
4 4
@ -630,7 +630,7 @@ WVList
142 142
MItem MItem
32 32
../../../../../lib/cmn/str-chr.c ../../../../../lib/cmn/str-beg.c
143 143
WString WString
4 4
@ -648,7 +648,7 @@ WVList
146 146
MItem MItem
32 32
../../../../../lib/cmn/str-cmp.c ../../../../../lib/cmn/str-cat.c
147 147
WString WString
4 4
@ -666,7 +666,7 @@ WVList
150 150
MItem MItem
32 32
../../../../../lib/cmn/str-cnv.c ../../../../../lib/cmn/str-chr.c
151 151
WString WString
4 4
@ -684,7 +684,7 @@ WVList
154 154
MItem MItem
32 32
../../../../../lib/cmn/str-cpy.c ../../../../../lib/cmn/str-cmp.c
155 155
WString WString
4 4
@ -702,7 +702,7 @@ WVList
158 158
MItem MItem
32 32
../../../../../lib/cmn/str-del.c ../../../../../lib/cmn/str-cnv.c
159 159
WString WString
4 4
@ -720,7 +720,7 @@ WVList
162 162
MItem MItem
32 32
../../../../../lib/cmn/str-dup.c ../../../../../lib/cmn/str-cpy.c
163 163
WString WString
4 4
@ -737,8 +737,8 @@ WVList
0 0
166 166
MItem MItem
33 32
../../../../../lib/cmn/str-dynm.c ../../../../../lib/cmn/str-del.c
167 167
WString WString
4 4
@ -755,8 +755,8 @@ WVList
0 0
170 170
MItem MItem
33 32
../../../../../lib/cmn/str-dynw.c ../../../../../lib/cmn/str-dup.c
171 171
WString WString
4 4
@ -773,8 +773,8 @@ WVList
0 0
174 174
MItem MItem
32 33
../../../../../lib/cmn/str-end.c ../../../../../lib/cmn/str-dynm.c
175 175
WString WString
4 4
@ -792,7 +792,7 @@ WVList
178 178
MItem MItem
33 33
../../../../../lib/cmn/str-excl.c ../../../../../lib/cmn/str-dynw.c
179 179
WString WString
4 4
@ -809,8 +809,8 @@ WVList
0 0
182 182
MItem MItem
33 32
../../../../../lib/cmn/str-fcpy.c ../../../../../lib/cmn/str-end.c
183 183
WString WString
4 4
@ -828,7 +828,7 @@ WVList
186 186
MItem MItem
33 33
../../../../../lib/cmn/str-incl.c ../../../../../lib/cmn/str-excl.c
187 187
WString WString
4 4
@ -845,8 +845,8 @@ WVList
0 0
190 190
MItem MItem
32 33
../../../../../lib/cmn/str-len.c ../../../../../lib/cmn/str-fcpy.c
191 191
WString WString
4 4
@ -863,8 +863,8 @@ WVList
0 0
194 194
MItem MItem
32 33
../../../../../lib/cmn/str-pac.c ../../../../../lib/cmn/str-incl.c
195 195
WString WString
4 4
@ -881,8 +881,8 @@ WVList
0 0
198 198
MItem MItem
33 32
../../../../../lib/cmn/str-pbrk.c ../../../../../lib/cmn/str-len.c
199 199
WString WString
4 4
@ -900,7 +900,7 @@ WVList
202 202
MItem MItem
32 32
../../../../../lib/cmn/str-put.c ../../../../../lib/cmn/str-pac.c
203 203
WString WString
4 4
@ -917,8 +917,8 @@ WVList
0 0
206 206
MItem MItem
32 33
../../../../../lib/cmn/str-rev.c ../../../../../lib/cmn/str-pbrk.c
207 207
WString WString
4 4
@ -936,7 +936,7 @@ WVList
210 210
MItem MItem
32 32
../../../../../lib/cmn/str-rot.c ../../../../../lib/cmn/str-put.c
211 211
WString WString
4 4
@ -954,7 +954,7 @@ WVList
214 214
MItem MItem
32 32
../../../../../lib/cmn/str-set.c ../../../../../lib/cmn/str-rev.c
215 215
WString WString
4 4
@ -972,7 +972,7 @@ WVList
218 218
MItem MItem
32 32
../../../../../lib/cmn/str-spl.c ../../../../../lib/cmn/str-rot.c
219 219
WString WString
4 4
@ -990,7 +990,7 @@ WVList
222 222
MItem MItem
32 32
../../../../../lib/cmn/str-spn.c ../../../../../lib/cmn/str-set.c
223 223
WString WString
4 4
@ -1008,7 +1008,7 @@ WVList
226 226
MItem MItem
32 32
../../../../../lib/cmn/str-str.c ../../../../../lib/cmn/str-spl.c
227 227
WString WString
4 4
@ -1025,8 +1025,8 @@ WVList
0 0
230 230
MItem MItem
34 32
../../../../../lib/cmn/str-subst.c ../../../../../lib/cmn/str-spn.c
231 231
WString WString
4 4
@ -1044,7 +1044,7 @@ WVList
234 234
MItem MItem
32 32
../../../../../lib/cmn/str-tok.c ../../../../../lib/cmn/str-str.c
235 235
WString WString
4 4
@ -1061,8 +1061,8 @@ WVList
0 0
238 238
MItem MItem
32 34
../../../../../lib/cmn/str-trm.c ../../../../../lib/cmn/str-subst.c
239 239
WString WString
4 4
@ -1079,8 +1079,8 @@ WVList
0 0
242 242
MItem MItem
33 32
../../../../../lib/cmn/str-word.c ../../../../../lib/cmn/str-tok.c
243 243
WString WString
4 4
@ -1097,8 +1097,8 @@ WVList
0 0
246 246
MItem MItem
29 32
../../../../../lib/cmn/time.c ../../../../../lib/cmn/str-trm.c
247 247
WString WString
4 4
@ -1115,8 +1115,8 @@ WVList
0 0
250 250
MItem MItem
32 33
../../../../../lib/cmn/tio-get.c ../../../../../lib/cmn/str-word.c
251 251
WString WString
4 4
@ -1133,8 +1133,8 @@ WVList
0 0
254 254
MItem MItem
32 29
../../../../../lib/cmn/tio-put.c ../../../../../lib/cmn/time.c
255 255
WString WString
4 4
@ -1151,8 +1151,8 @@ WVList
0 0
258 258
MItem MItem
28 32
../../../../../lib/cmn/tio.c ../../../../../lib/cmn/tio-get.c
259 259
WString WString
4 4
@ -1170,7 +1170,7 @@ WVList
262 262
MItem MItem
32 32
../../../../../lib/cmn/tre-ast.c ../../../../../lib/cmn/tio-put.c
263 263
WString WString
4 4
@ -1187,8 +1187,8 @@ WVList
0 0
266 266
MItem MItem
36 28
../../../../../lib/cmn/tre-compile.c ../../../../../lib/cmn/tio.c
267 267
WString WString
4 4
@ -1205,8 +1205,8 @@ WVList
0 0
270 270
MItem MItem
44 32
../../../../../lib/cmn/tre-match-backtrack.c ../../../../../lib/cmn/tre-ast.c
271 271
WString WString
4 4
@ -1223,8 +1223,8 @@ WVList
0 0
274 274
MItem MItem
43 36
../../../../../lib/cmn/tre-match-parallel.c ../../../../../lib/cmn/tre-compile.c
275 275
WString WString
4 4
@ -1241,8 +1241,8 @@ WVList
0 0
278 278
MItem MItem
34 44
../../../../../lib/cmn/tre-parse.c ../../../../../lib/cmn/tre-match-backtrack.c
279 279
WString WString
4 4
@ -1259,8 +1259,8 @@ WVList
0 0
282 282
MItem MItem
34 43
../../../../../lib/cmn/tre-stack.c ../../../../../lib/cmn/tre-match-parallel.c
283 283
WString WString
4 4
@ -1277,8 +1277,8 @@ WVList
0 0
286 286
MItem MItem
28 34
../../../../../lib/cmn/tre.c ../../../../../lib/cmn/tre-parse.c
287 287
WString WString
4 4
@ -1295,8 +1295,8 @@ WVList
0 0
290 290
MItem MItem
29 34
../../../../../lib/cmn/utf8.c ../../../../../lib/cmn/tre-stack.c
291 291
WString WString
4 4
@ -1314,7 +1314,7 @@ WVList
294 294
MItem MItem
28 28
../../../../../lib/cmn/xma.c ../../../../../lib/cmn/tre.c
295 295
WString WString
4 4
@ -1331,44 +1331,44 @@ WVList
0 0
298 298
MItem MItem
3 29
*.h ../../../../../lib/cmn/utf8.c
299 299
WString WString
3 4
NIL COBJ
300 300
WVList WVList
0 0
301 301
WVList WVList
0 0
-1 11
1 1
1 1
0 0
302 302
MItem MItem
28 28
../../../../../lib/cmn/mem.h ../../../../../lib/cmn/xma.c
303 303
WString WString
3 4
NIL COBJ
304 304
WVList WVList
0 0
305 305
WVList WVList
0 0
298 11
1 1
1 1
0 0
306 306
MItem MItem
32 3
../../../../../lib/cmn/syscall.h *.h
307 307
WString WString
3 3
@ -1379,7 +1379,43 @@ WVList
309 309
WVList WVList
0 0
298 -1
1
1
0
310
MItem
28
../../../../../lib/cmn/mem.h
311
WString
3
NIL
312
WVList
0
313
WVList
0
306
1
1
0
314
MItem
32
../../../../../lib/cmn/syscall.h
315
WString
3
NIL
316
WVList
0
317
WVList
0
306
1 1
1 1
0 0

View File

@ -42,7 +42,7 @@ WVList
0 0
10 10
WPickList WPickList
72 74
11 11
MItem MItem
3 3
@ -167,8 +167,8 @@ WVList
0 0
39 39
MItem MItem
32 28
../../../../../lib/cmn/chr-cnv.c ../../../../../lib/cmn/chr.c
40 40
WString WString
4 4
@ -186,7 +186,7 @@ WVList
43 43
MItem MItem
28 28
../../../../../lib/cmn/chr.c ../../../../../lib/cmn/dll.c
44 44
WString WString
4 4
@ -204,7 +204,7 @@ WVList
47 47
MItem MItem
28 28
../../../../../lib/cmn/dll.c ../../../../../lib/cmn/env.c
48 48
WString WString
4 4
@ -222,7 +222,7 @@ WVList
51 51
MItem MItem
28 28
../../../../../lib/cmn/env.c ../../../../../lib/cmn/fio.c
52 52
WString WString
4 4
@ -240,7 +240,7 @@ WVList
55 55
MItem MItem
28 28
../../../../../lib/cmn/fio.c ../../../../../lib/cmn/fma.c
56 56
WString WString
4 4
@ -258,7 +258,7 @@ WVList
59 59
MItem MItem
28 28
../../../../../lib/cmn/fma.c ../../../../../lib/cmn/fmt.c
60 60
WString WString
4 4
@ -276,7 +276,7 @@ WVList
63 63
MItem MItem
28 28
../../../../../lib/cmn/fmt.c ../../../../../lib/cmn/gdl.c
64 64
WString WString
4 4
@ -294,7 +294,7 @@ WVList
67 67
MItem MItem
28 28
../../../../../lib/cmn/gdl.c ../../../../../lib/cmn/htb.c
68 68
WString WString
4 4
@ -312,7 +312,7 @@ WVList
71 71
MItem MItem
28 28
../../../../../lib/cmn/htb.c ../../../../../lib/cmn/lda.c
72 72
WString WString
4 4
@ -329,8 +329,8 @@ WVList
0 0
75 75
MItem MItem
28 29
../../../../../lib/cmn/lda.c ../../../../../lib/cmn/main.c
76 76
WString WString
4 4
@ -347,8 +347,8 @@ WVList
0 0
79 79
MItem MItem
29 33
../../../../../lib/cmn/main.c ../../../../../lib/cmn/mbwc-str.c
80 80
WString WString
4 4
@ -365,8 +365,8 @@ WVList
0 0
83 83
MItem MItem
28 29
../../../../../lib/cmn/mem.c ../../../../../lib/cmn/mbwc.c
84 84
WString WString
4 4
@ -384,7 +384,7 @@ WVList
87 87
MItem MItem
28 28
../../../../../lib/cmn/oht.c ../../../../../lib/cmn/mem.c
88 88
WString WString
4 4
@ -402,7 +402,7 @@ WVList
91 91
MItem MItem
28 28
../../../../../lib/cmn/opt.c ../../../../../lib/cmn/oht.c
92 92
WString WString
4 4
@ -419,8 +419,8 @@ WVList
0 0
95 95
MItem MItem
38 28
../../../../../lib/cmn/path-basename.c ../../../../../lib/cmn/opt.c
96 96
WString WString
4 4
@ -437,8 +437,8 @@ WVList
0 0
99 99
MItem MItem
35 38
../../../../../lib/cmn/path-canon.c ../../../../../lib/cmn/path-basename.c
100 100
WString WString
4 4
@ -455,8 +455,8 @@ WVList
0 0
103 103
MItem MItem
28 35
../../../../../lib/cmn/pio.c ../../../../../lib/cmn/path-canon.c
104 104
WString WString
4 4
@ -474,7 +474,7 @@ WVList
107 107
MItem MItem
28 28
../../../../../lib/cmn/pma.c ../../../../../lib/cmn/pio.c
108 108
WString WString
4 4
@ -492,7 +492,7 @@ WVList
111 111
MItem MItem
28 28
../../../../../lib/cmn/rbt.c ../../../../../lib/cmn/pma.c
112 112
WString WString
4 4
@ -510,7 +510,7 @@ WVList
115 115
MItem MItem
28 28
../../../../../lib/cmn/rex.c ../../../../../lib/cmn/rbt.c
116 116
WString WString
4 4
@ -528,7 +528,7 @@ WVList
119 119
MItem MItem
28 28
../../../../../lib/cmn/sio.c ../../../../../lib/cmn/rex.c
120 120
WString WString
4 4
@ -546,7 +546,7 @@ WVList
123 123
MItem MItem
28 28
../../../../../lib/cmn/sll.c ../../../../../lib/cmn/sio.c
124 124
WString WString
4 4
@ -563,8 +563,8 @@ WVList
0 0
127 127
MItem MItem
30 28
../../../../../lib/cmn/stdio.c ../../../../../lib/cmn/sll.c
128 128
WString WString
4 4
@ -581,8 +581,8 @@ WVList
0 0
131 131
MItem MItem
32 29
../../../../../lib/cmn/str-beg.c ../../../../../lib/cmn/slmb.c
132 132
WString WString
4 4
@ -599,8 +599,8 @@ WVList
0 0
135 135
MItem MItem
32 30
../../../../../lib/cmn/str-cat.c ../../../../../lib/cmn/stdio.c
136 136
WString WString
4 4
@ -618,7 +618,7 @@ WVList
139 139
MItem MItem
32 32
../../../../../lib/cmn/str-chr.c ../../../../../lib/cmn/str-beg.c
140 140
WString WString
4 4
@ -636,7 +636,7 @@ WVList
143 143
MItem MItem
32 32
../../../../../lib/cmn/str-cmp.c ../../../../../lib/cmn/str-cat.c
144 144
WString WString
4 4
@ -654,7 +654,7 @@ WVList
147 147
MItem MItem
32 32
../../../../../lib/cmn/str-cnv.c ../../../../../lib/cmn/str-chr.c
148 148
WString WString
4 4
@ -672,7 +672,7 @@ WVList
151 151
MItem MItem
32 32
../../../../../lib/cmn/str-cpy.c ../../../../../lib/cmn/str-cmp.c
152 152
WString WString
4 4
@ -690,7 +690,7 @@ WVList
155 155
MItem MItem
32 32
../../../../../lib/cmn/str-del.c ../../../../../lib/cmn/str-cnv.c
156 156
WString WString
4 4
@ -708,7 +708,7 @@ WVList
159 159
MItem MItem
32 32
../../../../../lib/cmn/str-dup.c ../../../../../lib/cmn/str-cpy.c
160 160
WString WString
4 4
@ -725,8 +725,8 @@ WVList
0 0
163 163
MItem MItem
33 32
../../../../../lib/cmn/str-dynm.c ../../../../../lib/cmn/str-del.c
164 164
WString WString
4 4
@ -743,8 +743,8 @@ WVList
0 0
167 167
MItem MItem
33 32
../../../../../lib/cmn/str-dynw.c ../../../../../lib/cmn/str-dup.c
168 168
WString WString
4 4
@ -761,8 +761,8 @@ WVList
0 0
171 171
MItem MItem
32 33
../../../../../lib/cmn/str-end.c ../../../../../lib/cmn/str-dynm.c
172 172
WString WString
4 4
@ -780,7 +780,7 @@ WVList
175 175
MItem MItem
33 33
../../../../../lib/cmn/str-excl.c ../../../../../lib/cmn/str-dynw.c
176 176
WString WString
4 4
@ -797,8 +797,8 @@ WVList
0 0
179 179
MItem MItem
33 32
../../../../../lib/cmn/str-fcpy.c ../../../../../lib/cmn/str-end.c
180 180
WString WString
4 4
@ -816,7 +816,7 @@ WVList
183 183
MItem MItem
33 33
../../../../../lib/cmn/str-incl.c ../../../../../lib/cmn/str-excl.c
184 184
WString WString
4 4
@ -833,8 +833,8 @@ WVList
0 0
187 187
MItem MItem
32 33
../../../../../lib/cmn/str-len.c ../../../../../lib/cmn/str-fcpy.c
188 188
WString WString
4 4
@ -851,8 +851,8 @@ WVList
0 0
191 191
MItem MItem
32 33
../../../../../lib/cmn/str-pac.c ../../../../../lib/cmn/str-incl.c
192 192
WString WString
4 4
@ -869,8 +869,8 @@ WVList
0 0
195 195
MItem MItem
33 32
../../../../../lib/cmn/str-pbrk.c ../../../../../lib/cmn/str-len.c
196 196
WString WString
4 4
@ -888,7 +888,7 @@ WVList
199 199
MItem MItem
32 32
../../../../../lib/cmn/str-put.c ../../../../../lib/cmn/str-pac.c
200 200
WString WString
4 4
@ -905,8 +905,8 @@ WVList
0 0
203 203
MItem MItem
32 33
../../../../../lib/cmn/str-rev.c ../../../../../lib/cmn/str-pbrk.c
204 204
WString WString
4 4
@ -924,7 +924,7 @@ WVList
207 207
MItem MItem
32 32
../../../../../lib/cmn/str-rot.c ../../../../../lib/cmn/str-put.c
208 208
WString WString
4 4
@ -942,7 +942,7 @@ WVList
211 211
MItem MItem
32 32
../../../../../lib/cmn/str-set.c ../../../../../lib/cmn/str-rev.c
212 212
WString WString
4 4
@ -960,7 +960,7 @@ WVList
215 215
MItem MItem
32 32
../../../../../lib/cmn/str-spl.c ../../../../../lib/cmn/str-rot.c
216 216
WString WString
4 4
@ -978,7 +978,7 @@ WVList
219 219
MItem MItem
32 32
../../../../../lib/cmn/str-spn.c ../../../../../lib/cmn/str-set.c
220 220
WString WString
4 4
@ -996,7 +996,7 @@ WVList
223 223
MItem MItem
32 32
../../../../../lib/cmn/str-str.c ../../../../../lib/cmn/str-spl.c
224 224
WString WString
4 4
@ -1013,8 +1013,8 @@ WVList
0 0
227 227
MItem MItem
34 32
../../../../../lib/cmn/str-subst.c ../../../../../lib/cmn/str-spn.c
228 228
WString WString
4 4
@ -1032,7 +1032,7 @@ WVList
231 231
MItem MItem
32 32
../../../../../lib/cmn/str-tok.c ../../../../../lib/cmn/str-str.c
232 232
WString WString
4 4
@ -1049,8 +1049,8 @@ WVList
0 0
235 235
MItem MItem
32 34
../../../../../lib/cmn/str-trm.c ../../../../../lib/cmn/str-subst.c
236 236
WString WString
4 4
@ -1067,8 +1067,8 @@ WVList
0 0
239 239
MItem MItem
33 32
../../../../../lib/cmn/str-word.c ../../../../../lib/cmn/str-tok.c
240 240
WString WString
4 4
@ -1085,8 +1085,8 @@ WVList
0 0
243 243
MItem MItem
29 32
../../../../../lib/cmn/time.c ../../../../../lib/cmn/str-trm.c
244 244
WString WString
4 4
@ -1103,8 +1103,8 @@ WVList
0 0
247 247
MItem MItem
32 33
../../../../../lib/cmn/tio-get.c ../../../../../lib/cmn/str-word.c
248 248
WString WString
4 4
@ -1121,8 +1121,8 @@ WVList
0 0
251 251
MItem MItem
32 29
../../../../../lib/cmn/tio-put.c ../../../../../lib/cmn/time.c
252 252
WString WString
4 4
@ -1139,8 +1139,8 @@ WVList
0 0
255 255
MItem MItem
28 32
../../../../../lib/cmn/tio.c ../../../../../lib/cmn/tio-get.c
256 256
WString WString
4 4
@ -1158,7 +1158,7 @@ WVList
259 259
MItem MItem
32 32
../../../../../lib/cmn/tre-ast.c ../../../../../lib/cmn/tio-put.c
260 260
WString WString
4 4
@ -1175,8 +1175,8 @@ WVList
0 0
263 263
MItem MItem
36 28
../../../../../lib/cmn/tre-compile.c ../../../../../lib/cmn/tio.c
264 264
WString WString
4 4
@ -1193,8 +1193,8 @@ WVList
0 0
267 267
MItem MItem
44 32
../../../../../lib/cmn/tre-match-backtrack.c ../../../../../lib/cmn/tre-ast.c
268 268
WString WString
4 4
@ -1211,8 +1211,8 @@ WVList
0 0
271 271
MItem MItem
43 36
../../../../../lib/cmn/tre-match-parallel.c ../../../../../lib/cmn/tre-compile.c
272 272
WString WString
4 4
@ -1229,8 +1229,8 @@ WVList
0 0
275 275
MItem MItem
34 44
../../../../../lib/cmn/tre-parse.c ../../../../../lib/cmn/tre-match-backtrack.c
276 276
WString WString
4 4
@ -1247,8 +1247,8 @@ WVList
0 0
279 279
MItem MItem
34 43
../../../../../lib/cmn/tre-stack.c ../../../../../lib/cmn/tre-match-parallel.c
280 280
WString WString
4 4
@ -1265,8 +1265,8 @@ WVList
0 0
283 283
MItem MItem
28 34
../../../../../lib/cmn/tre.c ../../../../../lib/cmn/tre-parse.c
284 284
WString WString
4 4
@ -1283,8 +1283,8 @@ WVList
0 0
287 287
MItem MItem
29 34
../../../../../lib/cmn/utf8.c ../../../../../lib/cmn/tre-stack.c
288 288
WString WString
4 4
@ -1302,7 +1302,7 @@ WVList
291 291
MItem MItem
28 28
../../../../../lib/cmn/xma.c ../../../../../lib/cmn/tre.c
292 292
WString WString
4 4
@ -1319,44 +1319,44 @@ WVList
0 0
295 295
MItem MItem
3 29
*.h ../../../../../lib/cmn/utf8.c
296 296
WString WString
3 4
NIL COBJ
297 297
WVList WVList
0 0
298 298
WVList WVList
0 0
-1 11
1 1
1 1
0 0
299 299
MItem MItem
28 28
../../../../../lib/cmn/mem.h ../../../../../lib/cmn/xma.c
300 300
WString WString
3 4
NIL COBJ
301 301
WVList WVList
0 0
302 302
WVList WVList
0 0
295 11
1 1
1 1
0 0
303 303
MItem MItem
32 3
../../../../../lib/cmn/syscall.h *.h
304 304
WString WString
3 3
@ -1367,7 +1367,43 @@ WVList
306 306
WVList WVList
0 0
295 -1
1
1
0
307
MItem
28
../../../../../lib/cmn/mem.h
308
WString
3
NIL
309
WVList
0
310
WVList
0
303
1
1
0
311
MItem
32
../../../../../lib/cmn/syscall.h
312
WString
3
NIL
313
WVList
0
314
WVList
0
303
1 1
1 1
0 0

View File

@ -106,8 +106,8 @@ WRect
WFileName WFileName
30 30
release/os2/lib/cmn/qsecmn.tgt release/os2/lib/cmn/qsecmn.tgt
0 26
0 4
27 27
VComponent VComponent
28 28
@ -148,14 +148,14 @@ WRect
1360 1360
5700 5700
4240 4240
0 1
0 0
35 35
WFileName WFileName
28 28
debug/os2/lib/cmn/qsecmn.tgt debug/os2/lib/cmn/qsecmn.tgt
18 14
21 22
36 36
VComponent VComponent
37 37
@ -177,7 +177,7 @@ VComponent
40 40
WRect WRect
30 30
133 120
5700 5700
4240 4240
1 1
@ -186,17 +186,17 @@ WRect
WFileName WFileName
30 30
debug/win32/lib/cmn/qsecmn.tgt debug/win32/lib/cmn/qsecmn.tgt
59 0
61 4
42 42
VComponent VComponent
43 43
WRect WRect
2910 2910
2453 2440
5700 5700
4240 4240
1 0
0 0
44 44
WFileName WFileName
@ -251,7 +251,7 @@ WFileName
30 30
debug/dos32/lib/cmn/qsecmn.tgt debug/dos32/lib/cmn/qsecmn.tgt
0 0
6 3
54 54
VComponent VComponent
55 55

View File

@ -42,7 +42,7 @@ WVList
0 0
10 10
WPickList WPickList
71 73
11 11
MItem MItem
3 3
@ -215,8 +215,8 @@ WVList
0 0
51 51
MItem MItem
32 28
../../../../../lib/cmn/chr-cnv.c ../../../../../lib/cmn/chr.c
52 52
WString WString
4 4
@ -234,7 +234,7 @@ WVList
55 55
MItem MItem
28 28
../../../../../lib/cmn/chr.c ../../../../../lib/cmn/dll.c
56 56
WString WString
4 4
@ -252,7 +252,7 @@ WVList
59 59
MItem MItem
28 28
../../../../../lib/cmn/dll.c ../../../../../lib/cmn/fio.c
60 60
WString WString
4 4
@ -270,7 +270,7 @@ WVList
63 63
MItem MItem
28 28
../../../../../lib/cmn/fio.c ../../../../../lib/cmn/fma.c
64 64
WString WString
4 4
@ -288,7 +288,7 @@ WVList
67 67
MItem MItem
28 28
../../../../../lib/cmn/fma.c ../../../../../lib/cmn/fmt.c
68 68
WString WString
4 4
@ -306,7 +306,7 @@ WVList
71 71
MItem MItem
28 28
../../../../../lib/cmn/fmt.c ../../../../../lib/cmn/gdl.c
72 72
WString WString
4 4
@ -324,7 +324,7 @@ WVList
75 75
MItem MItem
28 28
../../../../../lib/cmn/gdl.c ../../../../../lib/cmn/htb.c
76 76
WString WString
4 4
@ -342,7 +342,7 @@ WVList
79 79
MItem MItem
28 28
../../../../../lib/cmn/htb.c ../../../../../lib/cmn/lda.c
80 80
WString WString
4 4
@ -359,8 +359,8 @@ WVList
0 0
83 83
MItem MItem
28 29
../../../../../lib/cmn/lda.c ../../../../../lib/cmn/main.c
84 84
WString WString
4 4
@ -377,8 +377,8 @@ WVList
0 0
87 87
MItem MItem
29 33
../../../../../lib/cmn/main.c ../../../../../lib/cmn/mbwc-str.c
88 88
WString WString
4 4
@ -395,8 +395,8 @@ WVList
0 0
91 91
MItem MItem
28 29
../../../../../lib/cmn/mem.c ../../../../../lib/cmn/mbwc.c
92 92
WString WString
4 4
@ -414,7 +414,7 @@ WVList
95 95
MItem MItem
28 28
../../../../../lib/cmn/oht.c ../../../../../lib/cmn/mem.c
96 96
WString WString
4 4
@ -432,7 +432,7 @@ WVList
99 99
MItem MItem
28 28
../../../../../lib/cmn/opt.c ../../../../../lib/cmn/oht.c
100 100
WString WString
4 4
@ -449,8 +449,8 @@ WVList
0 0
103 103
MItem MItem
38 28
../../../../../lib/cmn/path-basename.c ../../../../../lib/cmn/opt.c
104 104
WString WString
4 4
@ -467,8 +467,8 @@ WVList
0 0
107 107
MItem MItem
35 38
../../../../../lib/cmn/path-canon.c ../../../../../lib/cmn/path-basename.c
108 108
WString WString
4 4
@ -485,8 +485,8 @@ WVList
0 0
111 111
MItem MItem
28 35
../../../../../lib/cmn/pio.c ../../../../../lib/cmn/path-canon.c
112 112
WString WString
4 4
@ -504,7 +504,7 @@ WVList
115 115
MItem MItem
28 28
../../../../../lib/cmn/pma.c ../../../../../lib/cmn/pio.c
116 116
WString WString
4 4
@ -522,7 +522,7 @@ WVList
119 119
MItem MItem
28 28
../../../../../lib/cmn/rbt.c ../../../../../lib/cmn/pma.c
120 120
WString WString
4 4
@ -540,7 +540,7 @@ WVList
123 123
MItem MItem
28 28
../../../../../lib/cmn/rex.c ../../../../../lib/cmn/rbt.c
124 124
WString WString
4 4
@ -558,7 +558,7 @@ WVList
127 127
MItem MItem
28 28
../../../../../lib/cmn/sio.c ../../../../../lib/cmn/rex.c
128 128
WString WString
4 4
@ -576,7 +576,7 @@ WVList
131 131
MItem MItem
28 28
../../../../../lib/cmn/sll.c ../../../../../lib/cmn/sio.c
132 132
WString WString
4 4
@ -593,8 +593,8 @@ WVList
0 0
135 135
MItem MItem
30 28
../../../../../lib/cmn/stdio.c ../../../../../lib/cmn/sll.c
136 136
WString WString
4 4
@ -611,8 +611,8 @@ WVList
0 0
139 139
MItem MItem
32 29
../../../../../lib/cmn/str-beg.c ../../../../../lib/cmn/slmb.c
140 140
WString WString
4 4
@ -629,8 +629,8 @@ WVList
0 0
143 143
MItem MItem
32 30
../../../../../lib/cmn/str-cat.c ../../../../../lib/cmn/stdio.c
144 144
WString WString
4 4
@ -648,7 +648,7 @@ WVList
147 147
MItem MItem
32 32
../../../../../lib/cmn/str-chr.c ../../../../../lib/cmn/str-beg.c
148 148
WString WString
4 4
@ -666,7 +666,7 @@ WVList
151 151
MItem MItem
32 32
../../../../../lib/cmn/str-cmp.c ../../../../../lib/cmn/str-cat.c
152 152
WString WString
4 4
@ -684,7 +684,7 @@ WVList
155 155
MItem MItem
32 32
../../../../../lib/cmn/str-cnv.c ../../../../../lib/cmn/str-chr.c
156 156
WString WString
4 4
@ -702,7 +702,7 @@ WVList
159 159
MItem MItem
32 32
../../../../../lib/cmn/str-cpy.c ../../../../../lib/cmn/str-cmp.c
160 160
WString WString
4 4
@ -720,7 +720,7 @@ WVList
163 163
MItem MItem
32 32
../../../../../lib/cmn/str-del.c ../../../../../lib/cmn/str-cnv.c
164 164
WString WString
4 4
@ -738,7 +738,7 @@ WVList
167 167
MItem MItem
32 32
../../../../../lib/cmn/str-dup.c ../../../../../lib/cmn/str-cpy.c
168 168
WString WString
4 4
@ -755,8 +755,8 @@ WVList
0 0
171 171
MItem MItem
33 32
../../../../../lib/cmn/str-dynm.c ../../../../../lib/cmn/str-del.c
172 172
WString WString
4 4
@ -773,8 +773,8 @@ WVList
0 0
175 175
MItem MItem
33 32
../../../../../lib/cmn/str-dynw.c ../../../../../lib/cmn/str-dup.c
176 176
WString WString
4 4
@ -791,8 +791,8 @@ WVList
0 0
179 179
MItem MItem
32 33
../../../../../lib/cmn/str-end.c ../../../../../lib/cmn/str-dynm.c
180 180
WString WString
4 4
@ -810,7 +810,7 @@ WVList
183 183
MItem MItem
33 33
../../../../../lib/cmn/str-excl.c ../../../../../lib/cmn/str-dynw.c
184 184
WString WString
4 4
@ -827,8 +827,8 @@ WVList
0 0
187 187
MItem MItem
33 32
../../../../../lib/cmn/str-fcpy.c ../../../../../lib/cmn/str-end.c
188 188
WString WString
4 4
@ -846,7 +846,7 @@ WVList
191 191
MItem MItem
33 33
../../../../../lib/cmn/str-incl.c ../../../../../lib/cmn/str-excl.c
192 192
WString WString
4 4
@ -863,8 +863,8 @@ WVList
0 0
195 195
MItem MItem
32 33
../../../../../lib/cmn/str-len.c ../../../../../lib/cmn/str-fcpy.c
196 196
WString WString
4 4
@ -881,8 +881,8 @@ WVList
0 0
199 199
MItem MItem
32 33
../../../../../lib/cmn/str-pac.c ../../../../../lib/cmn/str-incl.c
200 200
WString WString
4 4
@ -899,8 +899,8 @@ WVList
0 0
203 203
MItem MItem
33 32
../../../../../lib/cmn/str-pbrk.c ../../../../../lib/cmn/str-len.c
204 204
WString WString
4 4
@ -918,7 +918,7 @@ WVList
207 207
MItem MItem
32 32
../../../../../lib/cmn/str-put.c ../../../../../lib/cmn/str-pac.c
208 208
WString WString
4 4
@ -935,8 +935,8 @@ WVList
0 0
211 211
MItem MItem
32 33
../../../../../lib/cmn/str-rev.c ../../../../../lib/cmn/str-pbrk.c
212 212
WString WString
4 4
@ -954,7 +954,7 @@ WVList
215 215
MItem MItem
32 32
../../../../../lib/cmn/str-rot.c ../../../../../lib/cmn/str-put.c
216 216
WString WString
4 4
@ -972,7 +972,7 @@ WVList
219 219
MItem MItem
32 32
../../../../../lib/cmn/str-set.c ../../../../../lib/cmn/str-rev.c
220 220
WString WString
4 4
@ -990,7 +990,7 @@ WVList
223 223
MItem MItem
32 32
../../../../../lib/cmn/str-spl.c ../../../../../lib/cmn/str-rot.c
224 224
WString WString
4 4
@ -1008,7 +1008,7 @@ WVList
227 227
MItem MItem
32 32
../../../../../lib/cmn/str-spn.c ../../../../../lib/cmn/str-set.c
228 228
WString WString
4 4
@ -1026,7 +1026,7 @@ WVList
231 231
MItem MItem
32 32
../../../../../lib/cmn/str-str.c ../../../../../lib/cmn/str-spl.c
232 232
WString WString
4 4
@ -1043,8 +1043,8 @@ WVList
0 0
235 235
MItem MItem
34 32
../../../../../lib/cmn/str-subst.c ../../../../../lib/cmn/str-spn.c
236 236
WString WString
4 4
@ -1062,7 +1062,7 @@ WVList
239 239
MItem MItem
32 32
../../../../../lib/cmn/str-tok.c ../../../../../lib/cmn/str-str.c
240 240
WString WString
4 4
@ -1079,8 +1079,8 @@ WVList
0 0
243 243
MItem MItem
32 34
../../../../../lib/cmn/str-trm.c ../../../../../lib/cmn/str-subst.c
244 244
WString WString
4 4
@ -1097,8 +1097,8 @@ WVList
0 0
247 247
MItem MItem
33 32
../../../../../lib/cmn/str-word.c ../../../../../lib/cmn/str-tok.c
248 248
WString WString
4 4
@ -1115,8 +1115,8 @@ WVList
0 0
251 251
MItem MItem
29 32
../../../../../lib/cmn/time.c ../../../../../lib/cmn/str-trm.c
252 252
WString WString
4 4
@ -1133,8 +1133,8 @@ WVList
0 0
255 255
MItem MItem
32 33
../../../../../lib/cmn/tio-get.c ../../../../../lib/cmn/str-word.c
256 256
WString WString
4 4
@ -1151,8 +1151,8 @@ WVList
0 0
259 259
MItem MItem
32 29
../../../../../lib/cmn/tio-put.c ../../../../../lib/cmn/time.c
260 260
WString WString
4 4
@ -1169,8 +1169,8 @@ WVList
0 0
263 263
MItem MItem
28 32
../../../../../lib/cmn/tio.c ../../../../../lib/cmn/tio-get.c
264 264
WString WString
4 4
@ -1188,7 +1188,7 @@ WVList
267 267
MItem MItem
32 32
../../../../../lib/cmn/tre-ast.c ../../../../../lib/cmn/tio-put.c
268 268
WString WString
4 4
@ -1205,8 +1205,8 @@ WVList
0 0
271 271
MItem MItem
36 28
../../../../../lib/cmn/tre-compile.c ../../../../../lib/cmn/tio.c
272 272
WString WString
4 4
@ -1223,8 +1223,8 @@ WVList
0 0
275 275
MItem MItem
44 32
../../../../../lib/cmn/tre-match-backtrack.c ../../../../../lib/cmn/tre-ast.c
276 276
WString WString
4 4
@ -1241,8 +1241,8 @@ WVList
0 0
279 279
MItem MItem
43 36
../../../../../lib/cmn/tre-match-parallel.c ../../../../../lib/cmn/tre-compile.c
280 280
WString WString
4 4
@ -1259,8 +1259,8 @@ WVList
0 0
283 283
MItem MItem
34 44
../../../../../lib/cmn/tre-parse.c ../../../../../lib/cmn/tre-match-backtrack.c
284 284
WString WString
4 4
@ -1277,8 +1277,8 @@ WVList
0 0
287 287
MItem MItem
34 43
../../../../../lib/cmn/tre-stack.c ../../../../../lib/cmn/tre-match-parallel.c
288 288
WString WString
4 4
@ -1295,8 +1295,8 @@ WVList
0 0
291 291
MItem MItem
28 34
../../../../../lib/cmn/tre.c ../../../../../lib/cmn/tre-parse.c
292 292
WString WString
4 4
@ -1313,8 +1313,8 @@ WVList
0 0
295 295
MItem MItem
29 34
../../../../../lib/cmn/utf8.c ../../../../../lib/cmn/tre-stack.c
296 296
WString WString
4 4
@ -1332,7 +1332,7 @@ WVList
299 299
MItem MItem
28 28
../../../../../lib/cmn/xma.c ../../../../../lib/cmn/tre.c
300 300
WString WString
4 4
@ -1349,44 +1349,44 @@ WVList
0 0
303 303
MItem MItem
3 29
*.h ../../../../../lib/cmn/utf8.c
304 304
WString WString
3 4
NIL COBJ
305 305
WVList WVList
0 0
306 306
WVList WVList
0 0
-1 11
1 1
1 1
0 0
307 307
MItem MItem
28 28
../../../../../lib/cmn/mem.h ../../../../../lib/cmn/xma.c
308 308
WString WString
3 4
NIL COBJ
309 309
WVList WVList
0 0
310 310
WVList WVList
0 0
303 11
1 1
1 1
0 0
311 311
MItem MItem
32 3
../../../../../lib/cmn/syscall.h *.h
312 312
WString WString
3 3
@ -1397,7 +1397,43 @@ WVList
314 314
WVList WVList
0 0
303 -1
1
1
0
315
MItem
28
../../../../../lib/cmn/mem.h
316
WString
3
NIL
317
WVList
0
318
WVList
0
311
1
1
0
319
MItem
32
../../../../../lib/cmn/syscall.h
320
WString
3
NIL
321
WVList
0
322
WVList
0
311
1 1
1 1
0 0