modified code for the first successful dos/4gw build omitting unsupported features

This commit is contained in:
hyung-hwan 2011-05-10 10:11:13 +00:00
parent fab23e8575
commit 3ae34f8acc
24 changed files with 1295 additions and 381 deletions

View File

@ -1,5 +1,5 @@
/* /*
* $Id: awk.c 447 2011-05-01 13:28:51Z hyunghwan.chung $ * $Id: awk.c 455 2011-05-09 16:11:13Z hyunghwan.chung $
* *
Copyright 2006-2011 Chung, Hyung-Hwan. Copyright 2006-2011 Chung, Hyung-Hwan.
This file is part of QSE. This file is part of QSE.
@ -28,6 +28,7 @@
#include <qse/cmn/stdio.h> #include <qse/cmn/stdio.h>
#include <qse/cmn/main.h> #include <qse/cmn/main.h>
#include <qse/cmn/xma.h> #include <qse/cmn/xma.h>
#include <qse/cmn/time.h>
#include <string.h> #include <string.h>
#include <signal.h> #include <signal.h>
@ -46,6 +47,8 @@
# define INCL_DOSEXCEPTIONS # define INCL_DOSEXCEPTIONS
# define INCL_ERRORS # define INCL_ERRORS
# include <os2.h> # include <os2.h>
#elif defined(__DOS__)
# include <dos.h>
#else #else
# include <unistd.h> # include <unistd.h>
# include <errno.h> # include <errno.h>
@ -132,6 +135,19 @@ static ULONG _System stop_run (
return XCPT_CONTINUE_SEARCH; /* exception not resolved */ return XCPT_CONTINUE_SEARCH; /* exception not resolved */
} }
#elif defined(__DOS__)
static void setsignal (int sig, void(*handler)(int))
{
signal (sig, handler);
}
static void stop_run (int sig)
{
qse_awk_rtx_stop (app_rtx);
}
#else #else
static int setsignal (int sig, void(*handler)(int), int restart) static int setsignal (int sig, void(*handler)(int), int restart)
@ -180,6 +196,8 @@ static void set_intr_run (void)
os2_excrr.ExceptionHandler = (ERR)stop_run; os2_excrr.ExceptionHandler = (ERR)stop_run;
rc = DosSetExceptionHandler (&os2_excrr); rc = DosSetExceptionHandler (&os2_excrr);
/*if (rc != NO_ERROR)...*/ /*if (rc != NO_ERROR)...*/
#elif defined(__DOS__)
setsignal (SIGINT, stop_run);
#else #else
/*setsignal (SIGINT, stop_run, 1); TO BE MORE COMPATIBLE WITH WIN32*/ /*setsignal (SIGINT, stop_run, 1); TO BE MORE COMPATIBLE WITH WIN32*/
setsignal (SIGINT, stop_run, 0); setsignal (SIGINT, stop_run, 0);
@ -194,6 +212,8 @@ static void unset_intr_run (void)
APIRET rc; APIRET rc;
rc = DosUnsetExceptionHandler (&os2_excrr); rc = DosUnsetExceptionHandler (&os2_excrr);
/*if (rc != NO_ERROR) ...*/ /*if (rc != NO_ERROR) ...*/
#elif defined(__DOS__)
setsignal (SIGINT, SIG_DFL);
#else #else
setsignal (SIGINT, SIG_DFL, 1); setsignal (SIGINT, SIG_DFL, 1);
#endif #endif

View File

@ -1,5 +1,5 @@
/* /*
* $Id: pio.h 441 2011-04-22 14:28:43Z hyunghwan.chung $ * $Id: pio.h 455 2011-05-09 16:11:13Z hyunghwan.chung $
* *
Copyright 2006-2011 Chung, Hyung-Hwan. Copyright 2006-2011 Chung, Hyung-Hwan.
This file is part of QSE. This file is part of QSE.
@ -130,8 +130,13 @@ typedef enum qse_pio_errnum_t qse_pio_errnum_t;
/* <os2def.h> => typedef LHANDLE HFILE; /* <os2def.h> => typedef LHANDLE HFILE;
typedef LHANDLE PID; typedef LHANDLE PID;
typedef unsigned long LHANDLE; */ typedef unsigned long LHANDLE; */
typedef unsigned long qse_pio_hnd_t; typedef unsigned long qse_pio_hnd_t; /**< defines a pipe handle type */
typedef unsigned long qse_pio_pid_t; typedef unsigned long qse_pio_pid_t; /**< defined a process handle type */
# define QSE_PIO_HND_NIL ((qse_pio_hnd_t)-1)
# define QSE_PIO_PID_NIL ((qse_pio_pid_t)-1)
#elif defined(__DOS__)
typedef int qse_pio_hnd_t; /**< defines a pipe handle type */
typedef int qse_pio_pid_t; /**< defines a process handle type */
# define QSE_PIO_HND_NIL ((qse_pio_hnd_t)-1) # define QSE_PIO_HND_NIL ((qse_pio_hnd_t)-1)
# define QSE_PIO_PID_NIL ((qse_pio_pid_t)-1) # define QSE_PIO_PID_NIL ((qse_pio_pid_t)-1)
#else #else

View File

@ -1,5 +1,5 @@
/* /*
* $Id: pio.c 454 2011-05-06 15:28:27Z hyunghwan.chung $ * $Id: pio.c 455 2011-05-09 16:11:13Z hyunghwan.chung $
* *
Copyright 2006-2011 Chung, Hyung-Hwan. Copyright 2006-2011 Chung, Hyung-Hwan.
This file is part of QSE. This file is part of QSE.
@ -105,8 +105,8 @@ qse_pio_t* qse_pio_init (
qse_char_t* dup = QSE_NULL; qse_char_t* dup = QSE_NULL;
HANDLE windevnul = INVALID_HANDLE_VALUE; HANDLE windevnul = INVALID_HANDLE_VALUE;
BOOL x; BOOL x;
#elif defined(__OS2__) #elif defined(__OS2__)
/* TODO: implmenet this for os/2 */
APIRET rc; APIRET rc;
ULONG pipe_size = 4096; ULONG pipe_size = 4096;
UCHAR load_error[CCHMAXPATH]; UCHAR load_error[CCHMAXPATH];
@ -118,8 +118,11 @@ qse_pio_t* qse_pio_init (
qse_mchar_t* cmd_line = QSE_NULL; qse_mchar_t* cmd_line = QSE_NULL;
qse_mchar_t* cmd_file; qse_mchar_t* cmd_file;
HFILE os2devnul = (HFILE)-1; HFILE os2devnul = (HFILE)-1;
#elif defined(__DOS__) #elif defined(__DOS__)
# error UNSUPPORTED /* TODO: implmenet this for dos
unsupported yet */
#else #else
qse_pio_pid_t pid; qse_pio_pid_t pid;
#endif #endif
@ -527,7 +530,11 @@ qse_pio_t* qse_pio_init (
if (rc != NO_ERROR) goto oops; if (rc != NO_ERROR) goto oops;
pio->child = child_rc.codeTerminate; pio->child = child_rc.codeTerminate;
#elif defined(__DOS__)
/* TODO: implement this */
#else #else
if (oflags & QSE_PIO_WRITEIN) if (oflags & QSE_PIO_WRITEIN)
@ -854,9 +861,11 @@ qse_pio_t* qse_pio_init (
return pio; return pio;
oops: oops:
#if defined(_WIN32) #if defined(_WIN32)
if (windevnul != INVALID_HANDLE_VALUE) CloseHandle (windevnul); if (windevnul != INVALID_HANDLE_VALUE) CloseHandle (windevnul);
if (dup) QSE_MMGR_FREE (mmgr, dup); if (dup) QSE_MMGR_FREE (mmgr, dup);
#elif defined(__OS2__) #elif defined(__OS2__)
if (cmd_line) QSE_MMGR_FREE (mmgr, cmd_line); if (cmd_line) QSE_MMGR_FREE (mmgr, cmd_line);
if (old_in != QSE_PIO_HND_NIL) if (old_in != QSE_PIO_HND_NIL)
@ -889,6 +898,11 @@ oops:
{ {
if (handle[i] != QSE_PIO_HND_NIL) DosClose (handle[i]); if (handle[i] != QSE_PIO_HND_NIL) DosClose (handle[i]);
} }
#elif defined(__DOS__)
for (i = minidx; i < maxidx; i++)
{
if (handle[i] != QSE_PIO_HND_NIL) close (handle[i]);
}
#else #else
for (i = minidx; i < maxidx; i++) for (i = minidx; i < maxidx; i++)
{ {
@ -962,6 +976,8 @@ static qse_ssize_t pio_read (
#elif defined(__OS2__) #elif defined(__OS2__)
ULONG count; ULONG count;
APIRET rc; APIRET rc;
#elif defined(__DOS__)
int n;
#else #else
qse_ssize_t n; qse_ssize_t n;
#endif #endif
@ -984,6 +1000,7 @@ static qse_ssize_t pio_read (
return -1; return -1;
} }
return (qse_ssize_t)count; return (qse_ssize_t)count;
#elif defined(__OS2__) #elif defined(__OS2__)
if (size > QSE_TYPE_MAX(ULONG)) size = QSE_TYPE_MAX(ULONG); if (size > QSE_TYPE_MAX(ULONG)) size = QSE_TYPE_MAX(ULONG);
rc = DosRead (hnd, buf, (ULONG)size, &count); rc = DosRead (hnd, buf, (ULONG)size, &count);
@ -994,6 +1011,16 @@ static qse_ssize_t pio_read (
return -1; return -1;
} }
return (qse_ssize_t)count; return (qse_ssize_t)count;
#elif defined(__DOS__)
/* TODO: verify this */
if (size > QSE_TYPE_MAX(unsigned int))
size = QSE_TYPE_MAX(unsigned int);
n = read (hnd, buf, size);
if (n == -1) pio->errnum = QSE_PIO_ESUBSYS;
return n;
#else #else
if (size > QSE_TYPE_MAX(size_t)) size = QSE_TYPE_MAX(size_t); if (size > QSE_TYPE_MAX(size_t)) size = QSE_TYPE_MAX(size_t);
@ -1039,6 +1066,8 @@ static qse_ssize_t pio_write (
#elif defined(__OS2__) #elif defined(__OS2__)
ULONG count; ULONG count;
APIRET rc; APIRET rc;
#elif defined(__DOS__)
int n;
#else #else
qse_ssize_t n; qse_ssize_t n;
#endif #endif
@ -1073,6 +1102,14 @@ static qse_ssize_t pio_write (
} }
return (qse_ssize_t)count; return (qse_ssize_t)count;
#elif defined(__DOS__)
if (size > QSE_TYPE_MAX(unsigned int))
size = QSE_TYPE_MAX(unsigned int);
n = write (hnd, data, size);
if (n == -1) pio->errnum = QSE_PIO_ESUBSYS;
return n;
#else #else
if (size > QSE_TYPE_MAX(size_t)) size = QSE_TYPE_MAX(size_t); if (size > QSE_TYPE_MAX(size_t)) size = QSE_TYPE_MAX(size_t);
@ -1131,6 +1168,8 @@ void qse_pio_end (qse_pio_t* pio, qse_pio_hid_t hid)
CloseHandle (pio->pin[hid].handle); CloseHandle (pio->pin[hid].handle);
#elif defined(__OS2__) #elif defined(__OS2__)
DosClose (pio->pin[hid].handle); DosClose (pio->pin[hid].handle);
#elif defined(__DOS__)
close (pio->pin[hid].handle);
#else #else
QSE_CLOSE (pio->pin[hid].handle); QSE_CLOSE (pio->pin[hid].handle);
#endif #endif
@ -1231,6 +1270,10 @@ int qse_pio_wait (qse_pio_t* pio)
return (child_rc.codeTerminate == TC_EXIT)? return (child_rc.codeTerminate == TC_EXIT)?
child_rc.codeResult: (255 + 1 + child_rc.codeTerminate); child_rc.codeResult: (255 + 1 + child_rc.codeTerminate);
#elif defined(__DOS__)
/* TOOD: implement this */
return -1;
#else #else
int opt = 0; int opt = 0;
@ -1315,6 +1358,8 @@ int qse_pio_kill (qse_pio_t* pio)
DWORD n; DWORD n;
#elif defined(__OS2__) #elif defined(__OS2__)
APIRET rc; APIRET rc;
#elif defined(__DOS__)
/* TODO: implement this */
#else #else
int n; int n;
#endif #endif
@ -1334,6 +1379,7 @@ int qse_pio_kill (qse_pio_t* pio)
return -1; return -1;
} }
return 0; return 0;
#elif defined(__OS2__) #elif defined(__OS2__)
/*TODO: must use DKP_PROCESS? */ /*TODO: must use DKP_PROCESS? */
rc = DosKillProcess (pio->child, DKP_PROCESSTREE); rc = DosKillProcess (pio->child, DKP_PROCESSTREE);
@ -1343,6 +1389,11 @@ int qse_pio_kill (qse_pio_t* pio)
return -1; return -1;
} }
return 0; return 0;
#elif defined(__DOS__)
/* TODO: implement this*/
return -1;
#else #else
n = QSE_KILL (pio->child, SIGKILL); n = QSE_KILL (pio->child, SIGKILL);
if (n <= -1) pio->errnum = QSE_PIO_ESUBSYS; if (n <= -1) pio->errnum = QSE_PIO_ESUBSYS;

View File

@ -339,7 +339,7 @@ QSE_FILE* qse_fopen (const qse_char_t* path, const qse_char_t* mode)
{ {
#if defined(QSE_CHAR_IS_MCHAR) #if defined(QSE_CHAR_IS_MCHAR)
return fopen (path, mode); return fopen (path, mode);
#elif defined(_WIN32) #elif defined(_WIN32) || defined(__OS2__)
return _wfopen (path, mode); return _wfopen (path, mode);
#else #else
@ -362,13 +362,21 @@ QSE_FILE* qse_fopen (const qse_char_t* path, const qse_char_t* mode)
QSE_FILE* qse_popen (const qse_char_t* cmd, const qse_char_t* mode) QSE_FILE* qse_popen (const qse_char_t* cmd, const qse_char_t* mode)
{ {
#if defined(QSE_CHAR_IS_MCHAR) #if defined(QSE_CHAR_IS_MCHAR)
#if defined(__OS2__)
#if defined(__OS2__)
return _popen (cmd, mode); return _popen (cmd, mode);
#else #elif defined(__DOS__)
return QSE_NULL;
#else
return popen (cmd, mode); return popen (cmd, mode);
#endif #endif
#elif defined(_WIN32) || defined(__OS2__)
#elif defined(_WIN32) || defined(__OS2__)
return _wpopen (cmd, mode); return _wpopen (cmd, mode);
#elif defined(__DOS__)
return QSE_NULL;
#else #else
char cmd_mb[PATH_MAX + 1]; char cmd_mb[PATH_MAX + 1];
char mode_mb[32]; char mode_mb[32];

View File

@ -1,5 +1,5 @@
/* /*
* $Id: time.c 441 2011-04-22 14:28:43Z hyunghwan.chung $ * $Id: time.c 455 2011-05-09 16:11:13Z hyunghwan.chung $
* *
Copyright 2006-2011 Chung, Hyung-Hwan. Copyright 2006-2011 Chung, Hyung-Hwan.
This file is part of QSE. This file is part of QSE.
@ -27,6 +27,8 @@
# define INCL_DOSDATETIME # define INCL_DOSDATETIME
# define INCL_DOSERRORS # define INCL_DOSERRORS
# include <os2.h> # include <os2.h>
#elif defined(__DOS__)
# include <dos.h>
#else #else
# include "syscall.h" # include "syscall.h"
# include <sys/time.h> # include <sys/time.h>
@ -119,6 +121,27 @@ int qse_gettime (qse_ntime_t* t)
if (qse_timelocal (&bt, t) <= -1) return -1; if (qse_timelocal (&bt, t) <= -1) return -1;
return 0; return 0;
#elif defined(__DOS__)
struct dostime_t dt;
struct dosdate_t dd;
qse_btime_t bt;
_dos_gettime (&dt);
_dos_getdate (&dd);
bt.year = dd.year - 1900;
bt.mon = dd.month - 1;
bt.mday = dd.day;
bt.hour = dt.hour;
bt.min = dt.minute;
bt.sec = dt.second;
bt.msec = dt.hsecond * 10;
bt.isdst = -1;
if (qse_timelocal (&bt, t) <= -1) return -1;
return 0;
#else #else
struct timeval tv; struct timeval tv;
int n; int n;
@ -142,6 +165,7 @@ int qse_settime (qse_ntime_t t)
if (FileTimeToSystemTime (&ft, &st) == FALSE) return -1; if (FileTimeToSystemTime (&ft, &st) == FALSE) return -1;
if (SetSystemTime(&st) == FALSE) return -1; if (SetSystemTime(&st) == FALSE) return -1;
return 0; return 0;
#elif defined(__OS2__) #elif defined(__OS2__)
APIRET rc; APIRET rc;
@ -161,6 +185,28 @@ int qse_settime (qse_ntime_t t)
rc = DosSetDateTime (&dt); rc = DosSetDateTime (&dt);
return (rc != NO_ERROR)? -1: 0; return (rc != NO_ERROR)? -1: 0;
#elif defined(__DOS__)
struct dostime_t dt;
struct dosdate_t dd;
qse_btime_t bt;
if (qse_localtime (t, &bt) <= -1) return -1;
dd.year = bt.year + 1900;
dd.month = bt.mon + 1;
dd.day = bt.mday;
dt.hour = bt.hour;
dt.minute = bt.min;
dt.second = bt.sec;
dt.hsecond = bt.msec / 10;
if (_dos_settime (&dt) != 0) return -1;
if (_dos_setdate (&dd) != 0) return -1;
return 0;
#else #else
struct timeval tv; struct timeval tv;
int n; int n;
@ -275,6 +321,13 @@ int qse_localtime (qse_ntime_t nt, qse_btime_t* bt)
# else # else
# error Please support other compilers that I didn't try. # error Please support other compilers that I didn't try.
# endif # endif
#elif defined(__DOS__)
# if defined(__WATCOMC__)
struct tm btm;
tm = _localtime (&t, &btm);
# else
# error Please support other compilers that I didn't try.
# endif
#else #else
struct tm btm; struct tm btm;
tm = localtime_r (&t, &btm); tm = localtime_r (&t, &btm);
@ -322,6 +375,8 @@ int qse_timegm (const qse_btime_t* bt, qse_ntime_t* nt)
return 0; return 0;
#elif defined(__OS2__) #elif defined(__OS2__)
# error NOT IMPLEMENTED YET # error NOT IMPLEMENTED YET
#elif defined(__DOS__)
# error NOT IMPLEMENTED YET
#else #else
/* TODO: qse_timegm - remove dependency on timegm */ /* TODO: qse_timegm - remove dependency on timegm */

View File

@ -0,0 +1,129 @@
40
targetIdent
0
MProject
1
MComponent
0
2
WString
3
EXE
3
WString
5
dr2eo
1
0
1
4
MCommand
0
5
MCommand
0
6
MItem
10
qseawk.exe
7
WString
3
EXE
8
WVList
2
9
MVState
10
WString
5
WLINK
11
WString
28
?????Library directories(;):
1
12
WString
27
../../lib/cmn ../../lib/awk
0
13
MVState
14
WString
5
WLINK
15
WString
18
?????Libraries(,):
1
16
WString
13
qsecmn qseawk
0
17
WVList
0
-1
1
1
0
18
WPickList
2
19
MItem
3
*.c
20
WString
4
COBJ
21
WVList
1
22
MVState
23
WString
3
WCC
24
WString
25
d????Include directories:
1
25
WString
37
"$(%watcom)/h;../../../../../include"
0
26
WVList
0
-1
1
1
0
27
MItem
28
../../../../../cmd/awk/awk.c
28
WString
4
COBJ
29
WVList
0
30
WVList
0
19
1
1
0

View File

@ -0,0 +1,457 @@
40
targetIdent
0
MProject
1
MComponent
0
2
WString
3
LIB
3
WString
5
d_2so
1
0
1
4
MCommand
0
5
MCommand
0
6
MItem
10
qseawk.lib
7
WString
3
LIB
8
WVList
0
9
WVList
0
-1
1
1
0
10
WPickList
22
11
MItem
3
*.c
12
WString
4
COBJ
13
WVList
1
14
MVState
15
WString
3
WCC
16
WString
25
d????Include directories:
1
17
WString
37
"$(%watcom)/h;../../../../../include"
0
18
WVList
0
-1
1
1
0
19
MItem
28
../../../../../lib/awk/awk.c
20
WString
4
COBJ
21
WVList
0
22
WVList
0
11
1
1
0
23
MItem
28
../../../../../lib/awk/err.c
24
WString
4
COBJ
25
WVList
0
26
WVList
0
11
1
1
0
27
MItem
28
../../../../../lib/awk/fnc.c
28
WString
4
COBJ
29
WVList
0
30
WVList
0
11
1
1
0
31
MItem
29
../../../../../lib/awk/misc.c
32
WString
4
COBJ
33
WVList
0
34
WVList
0
11
1
1
0
35
MItem
30
../../../../../lib/awk/parse.c
36
WString
4
COBJ
37
WVList
0
38
WVList
0
11
1
1
0
39
MItem
28
../../../../../lib/awk/rec.c
40
WString
4
COBJ
41
WVList
0
42
WVList
0
11
1
1
0
43
MItem
28
../../../../../lib/awk/rio.c
44
WString
4
COBJ
45
WVList
0
46
WVList
0
11
1
1
0
47
MItem
28
../../../../../lib/awk/run.c
48
WString
4
COBJ
49
WVList
0
50
WVList
0
11
1
1
0
51
MItem
28
../../../../../lib/awk/std.c
52
WString
4
COBJ
53
WVList
0
54
WVList
0
11
1
1
0
55
MItem
29
../../../../../lib/awk/tree.c
56
WString
4
COBJ
57
WVList
0
58
WVList
0
11
1
1
0
59
MItem
28
../../../../../lib/awk/val.c
60
WString
4
COBJ
61
WVList
0
62
WVList
0
11
1
1
0
63
MItem
3
*.h
64
WString
3
NIL
65
WVList
0
66
WVList
0
-1
1
1
0
67
MItem
28
../../../../../lib/awk/awk.h
68
WString
3
NIL
69
WVList
0
70
WVList
0
63
1
1
0
71
MItem
28
../../../../../lib/awk/err.h
72
WString
3
NIL
73
WVList
0
74
WVList
0
63
1
1
0
75
MItem
28
../../../../../lib/awk/fnc.h
76
WString
3
NIL
77
WVList
0
78
WVList
0
63
1
1
0
79
MItem
29
../../../../../lib/awk/misc.h
80
WString
3
NIL
81
WVList
0
82
WVList
0
63
1
1
0
83
MItem
30
../../../../../lib/awk/parse.h
84
WString
3
NIL
85
WVList
0
86
WVList
0
63
1
1
0
87
MItem
28
../../../../../lib/awk/rio.h
88
WString
3
NIL
89
WVList
0
90
WVList
0
63
1
1
0
91
MItem
28
../../../../../lib/awk/run.h
92
WString
3
NIL
93
WVList
0
94
WVList
0
63
1
1
0
95
MItem
29
../../../../../lib/awk/tree.h
96
WString
3
NIL
97
WVList
0
98
WVList
0
63
1
1
0
99
MItem
28
../../../../../lib/awk/val.h
100
WString
3
NIL
101
WVList
0
102
WVList
0
63
1
1
0

View File

@ -68,7 +68,7 @@ d????Include directories:
17 17
WString WString
37 37
"$(%watcom)/h;..\..\..\..\..\include" "$(%watcom)/h;../../../../../include"
0 0
18 18
WVList WVList
@ -80,7 +80,7 @@ WVList
19 19
MItem MItem
35 35
..\..\..\..\..\lib\cmn\alg_search.c ../../../../../lib/cmn/alg_search.c
20 20
WString WString
4 4
@ -98,7 +98,7 @@ WVList
23 23
MItem MItem
33 33
..\..\..\..\..\lib\cmn\alg_sort.c ../../../../../lib/cmn/alg_sort.c
24 24
WString WString
4 4
@ -116,7 +116,7 @@ WVList
27 27
MItem MItem
31 31
..\..\..\..\..\lib\cmn\assert.c ../../../../../lib/cmn/assert.c
28 28
WString WString
4 4
@ -134,7 +134,7 @@ WVList
31 31
MItem MItem
28 28
..\..\..\..\..\lib\cmn\chr.c ../../../../../lib/cmn/chr.c
32 32
WString WString
4 4
@ -152,7 +152,7 @@ WVList
35 35
MItem MItem
32 32
..\..\..\..\..\lib\cmn\chr_cnv.c ../../../../../lib/cmn/chr_cnv.c
36 36
WString WString
4 4
@ -170,7 +170,7 @@ WVList
39 39
MItem MItem
28 28
..\..\..\..\..\lib\cmn\dll.c ../../../../../lib/cmn/dll.c
40 40
WString WString
4 4
@ -188,7 +188,7 @@ WVList
43 43
MItem MItem
28 28
..\..\..\..\..\lib\cmn\fio.c ../../../../../lib/cmn/fio.c
44 44
WString WString
4 4
@ -206,7 +206,7 @@ WVList
47 47
MItem MItem
28 28
..\..\..\..\..\lib\cmn\fma.c ../../../../../lib/cmn/fma.c
48 48
WString WString
4 4
@ -224,7 +224,7 @@ WVList
51 51
MItem MItem
28 28
..\..\..\..\..\lib\cmn\gdl.c ../../../../../lib/cmn/gdl.c
52 52
WString WString
4 4
@ -242,7 +242,7 @@ WVList
55 55
MItem MItem
28 28
..\..\..\..\..\lib\cmn\htb.c ../../../../../lib/cmn/htb.c
56 56
WString WString
4 4
@ -260,7 +260,7 @@ WVList
59 59
MItem MItem
28 28
..\..\..\..\..\lib\cmn\lda.c ../../../../../lib/cmn/lda.c
60 60
WString WString
4 4
@ -278,7 +278,7 @@ WVList
63 63
MItem MItem
29 29
..\..\..\..\..\lib\cmn\main.c ../../../../../lib/cmn/main.c
64 64
WString WString
4 4
@ -296,7 +296,7 @@ WVList
67 67
MItem MItem
28 28
..\..\..\..\..\lib\cmn\mem.c ../../../../../lib/cmn/mem.c
68 68
WString WString
4 4
@ -314,7 +314,7 @@ WVList
71 71
MItem MItem
29 29
..\..\..\..\..\lib\cmn\misc.c ../../../../../lib/cmn/misc.c
72 72
WString WString
4 4
@ -332,7 +332,7 @@ WVList
75 75
MItem MItem
28 28
..\..\..\..\..\lib\cmn\oht.c ../../../../../lib/cmn/oht.c
76 76
WString WString
4 4
@ -350,7 +350,7 @@ WVList
79 79
MItem MItem
28 28
..\..\..\..\..\lib\cmn\opt.c ../../../../../lib/cmn/opt.c
80 80
WString WString
4 4
@ -368,7 +368,7 @@ WVList
83 83
MItem MItem
28 28
..\..\..\..\..\lib\cmn\pio.c ../../../../../lib/cmn/pio.c
84 84
WString WString
4 4
@ -386,7 +386,7 @@ WVList
87 87
MItem MItem
28 28
..\..\..\..\..\lib\cmn\rbt.c ../../../../../lib/cmn/rbt.c
88 88
WString WString
4 4
@ -404,7 +404,7 @@ WVList
91 91
MItem MItem
28 28
..\..\..\..\..\lib\cmn\rex.c ../../../../../lib/cmn/rex.c
92 92
WString WString
4 4
@ -422,7 +422,7 @@ WVList
95 95
MItem MItem
28 28
..\..\..\..\..\lib\cmn\sio.c ../../../../../lib/cmn/sio.c
96 96
WString WString
4 4
@ -440,7 +440,7 @@ WVList
99 99
MItem MItem
28 28
..\..\..\..\..\lib\cmn\sll.c ../../../../../lib/cmn/sll.c
100 100
WString WString
4 4
@ -458,7 +458,7 @@ WVList
103 103
MItem MItem
30 30
..\..\..\..\..\lib\cmn\stdio.c ../../../../../lib/cmn/stdio.c
104 104
WString WString
4 4
@ -476,7 +476,7 @@ WVList
107 107
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_beg.c ../../../../../lib/cmn/str_beg.c
108 108
WString WString
4 4
@ -494,7 +494,7 @@ WVList
111 111
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_cat.c ../../../../../lib/cmn/str_cat.c
112 112
WString WString
4 4
@ -512,7 +512,7 @@ WVList
115 115
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_chr.c ../../../../../lib/cmn/str_chr.c
116 116
WString WString
4 4
@ -530,7 +530,7 @@ WVList
119 119
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_cmp.c ../../../../../lib/cmn/str_cmp.c
120 120
WString WString
4 4
@ -548,7 +548,7 @@ WVList
123 123
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_cnv.c ../../../../../lib/cmn/str_cnv.c
124 124
WString WString
4 4
@ -566,7 +566,7 @@ WVList
127 127
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_cpy.c ../../../../../lib/cmn/str_cpy.c
128 128
WString WString
4 4
@ -584,7 +584,7 @@ WVList
131 131
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_del.c ../../../../../lib/cmn/str_del.c
132 132
WString WString
4 4
@ -602,7 +602,7 @@ WVList
135 135
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_dup.c ../../../../../lib/cmn/str_dup.c
136 136
WString WString
4 4
@ -620,7 +620,7 @@ WVList
139 139
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_dynm.c ../../../../../lib/cmn/str_dynm.c
140 140
WString WString
4 4
@ -638,7 +638,7 @@ WVList
143 143
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_dynw.c ../../../../../lib/cmn/str_dynw.c
144 144
WString WString
4 4
@ -656,7 +656,7 @@ WVList
147 147
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_end.c ../../../../../lib/cmn/str_end.c
148 148
WString WString
4 4
@ -674,7 +674,7 @@ WVList
151 151
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_excl.c ../../../../../lib/cmn/str_excl.c
152 152
WString WString
4 4
@ -692,7 +692,7 @@ WVList
155 155
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_fcpy.c ../../../../../lib/cmn/str_fcpy.c
156 156
WString WString
4 4
@ -710,7 +710,7 @@ WVList
159 159
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_incl.c ../../../../../lib/cmn/str_incl.c
160 160
WString WString
4 4
@ -728,7 +728,7 @@ WVList
163 163
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_len.c ../../../../../lib/cmn/str_len.c
164 164
WString WString
4 4
@ -746,7 +746,7 @@ WVList
167 167
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_pac.c ../../../../../lib/cmn/str_pac.c
168 168
WString WString
4 4
@ -764,7 +764,7 @@ WVList
171 171
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_pbrk.c ../../../../../lib/cmn/str_pbrk.c
172 172
WString WString
4 4
@ -782,7 +782,7 @@ WVList
175 175
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_put.c ../../../../../lib/cmn/str_put.c
176 176
WString WString
4 4
@ -800,7 +800,7 @@ WVList
179 179
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_rev.c ../../../../../lib/cmn/str_rev.c
180 180
WString WString
4 4
@ -818,7 +818,7 @@ WVList
183 183
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_rot.c ../../../../../lib/cmn/str_rot.c
184 184
WString WString
4 4
@ -836,7 +836,7 @@ WVList
187 187
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_set.c ../../../../../lib/cmn/str_set.c
188 188
WString WString
4 4
@ -854,7 +854,7 @@ WVList
191 191
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_spl.c ../../../../../lib/cmn/str_spl.c
192 192
WString WString
4 4
@ -872,7 +872,7 @@ WVList
195 195
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_spn.c ../../../../../lib/cmn/str_spn.c
196 196
WString WString
4 4
@ -890,7 +890,7 @@ WVList
199 199
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_str.c ../../../../../lib/cmn/str_str.c
200 200
WString WString
4 4
@ -908,7 +908,7 @@ WVList
203 203
MItem MItem
34 34
..\..\..\..\..\lib\cmn\str_subst.c ../../../../../lib/cmn/str_subst.c
204 204
WString WString
4 4
@ -926,7 +926,7 @@ WVList
207 207
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_tok.c ../../../../../lib/cmn/str_tok.c
208 208
WString WString
4 4
@ -944,7 +944,7 @@ WVList
211 211
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_trm.c ../../../../../lib/cmn/str_trm.c
212 212
WString WString
4 4
@ -962,7 +962,7 @@ WVList
215 215
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_word.c ../../../../../lib/cmn/str_word.c
216 216
WString WString
4 4
@ -980,7 +980,7 @@ WVList
219 219
MItem MItem
29 29
..\..\..\..\..\lib\cmn\time.c ../../../../../lib/cmn/time.c
220 220
WString WString
4 4
@ -998,7 +998,7 @@ WVList
223 223
MItem MItem
28 28
..\..\..\..\..\lib\cmn\tio.c ../../../../../lib/cmn/tio.c
224 224
WString WString
4 4
@ -1016,7 +1016,7 @@ WVList
227 227
MItem MItem
32 32
..\..\..\..\..\lib\cmn\tio_get.c ../../../../../lib/cmn/tio_get.c
228 228
WString WString
4 4
@ -1034,7 +1034,7 @@ WVList
231 231
MItem MItem
32 32
..\..\..\..\..\lib\cmn\tio_put.c ../../../../../lib/cmn/tio_put.c
232 232
WString WString
4 4
@ -1052,7 +1052,7 @@ WVList
235 235
MItem MItem
28 28
..\..\..\..\..\lib\cmn\xma.c ../../../../../lib/cmn/xma.c
236 236
WString WString
4 4
@ -1088,7 +1088,7 @@ WVList
243 243
MItem MItem
28 28
..\..\..\..\..\lib\cmn\mem.h ../../../../../lib/cmn/mem.h
244 244
WString WString
3 3
@ -1106,7 +1106,7 @@ WVList
247 247
MItem MItem
32 32
..\..\..\..\..\lib\cmn\syscall.h ../../../../../lib/cmn/syscall.h
248 248
WString WString
3 3

View File

@ -143,7 +143,7 @@ o?2??Include directories:
38 38
WString WString
54 54
"$(%watcom)/h;$(%watcom)/h/os2;..\..\..\..\..\include" "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include"
0 0
39 39
WVList WVList
@ -155,7 +155,7 @@ WVList
40 40
MItem MItem
28 28
..\..\..\..\..\cmd\awk\awk.c ../../../../../cmd/awk/awk.c
41 41
WString WString
4 4

View File

@ -96,7 +96,7 @@ WVList
23 23
MItem MItem
28 28
..\..\..\..\..\cmd\scm\scm.c ../../../../../cmd/scm/scm.c
24 24
WString WString
4 4
@ -118,7 +118,7 @@ o?2??Include directories:
29 29
WString WString
54 54
"$(%watcom)\h;$(%watcom)\h\os2;..\..\..\..\..\include" "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include"
0 0
30 30
WVList WVList

View File

@ -68,7 +68,7 @@ o?2??Include directories:
17 17
WString WString
54 54
"$(%watcom)/h;$(%watcom)/h/os2;..\..\..\..\..\include" "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include"
0 0
18 18
WVList WVList
@ -80,7 +80,7 @@ WVList
19 19
MItem MItem
28 28
..\..\..\..\..\lib\awk\awk.c ../../../../../lib/awk/awk.c
20 20
WString WString
4 4
@ -98,7 +98,7 @@ WVList
23 23
MItem MItem
28 28
..\..\..\..\..\lib\awk\err.c ../../../../../lib/awk/err.c
24 24
WString WString
4 4
@ -116,7 +116,7 @@ WVList
27 27
MItem MItem
28 28
..\..\..\..\..\lib\awk\fnc.c ../../../../../lib/awk/fnc.c
28 28
WString WString
4 4
@ -134,7 +134,7 @@ WVList
31 31
MItem MItem
29 29
..\..\..\..\..\lib\awk\misc.c ../../../../../lib/awk/misc.c
32 32
WString WString
4 4
@ -152,7 +152,7 @@ WVList
35 35
MItem MItem
30 30
..\..\..\..\..\lib\awk\parse.c ../../../../../lib/awk/parse.c
36 36
WString WString
4 4
@ -170,7 +170,7 @@ WVList
39 39
MItem MItem
28 28
..\..\..\..\..\lib\awk\rec.c ../../../../../lib/awk/rec.c
40 40
WString WString
4 4
@ -188,7 +188,7 @@ WVList
43 43
MItem MItem
28 28
..\..\..\..\..\lib\awk\rio.c ../../../../../lib/awk/rio.c
44 44
WString WString
4 4
@ -206,7 +206,7 @@ WVList
47 47
MItem MItem
28 28
..\..\..\..\..\lib\awk\run.c ../../../../../lib/awk/run.c
48 48
WString WString
4 4
@ -224,7 +224,7 @@ WVList
51 51
MItem MItem
28 28
..\..\..\..\..\lib\awk\std.c ../../../../../lib/awk/std.c
52 52
WString WString
4 4
@ -242,7 +242,7 @@ WVList
55 55
MItem MItem
29 29
..\..\..\..\..\lib\awk\tree.c ../../../../../lib/awk/tree.c
56 56
WString WString
4 4
@ -260,7 +260,7 @@ WVList
59 59
MItem MItem
28 28
..\..\..\..\..\lib\awk\val.c ../../../../../lib/awk/val.c
60 60
WString WString
4 4
@ -296,7 +296,7 @@ WVList
67 67
MItem MItem
28 28
..\..\..\..\..\lib\awk\awk.h ../../../../../lib/awk/awk.h
68 68
WString WString
3 3
@ -314,7 +314,7 @@ WVList
71 71
MItem MItem
28 28
..\..\..\..\..\lib\awk\err.h ../../../../../lib/awk/err.h
72 72
WString WString
3 3
@ -332,7 +332,7 @@ WVList
75 75
MItem MItem
28 28
..\..\..\..\..\lib\awk\fnc.h ../../../../../lib/awk/fnc.h
76 76
WString WString
3 3
@ -350,7 +350,7 @@ WVList
79 79
MItem MItem
29 29
..\..\..\..\..\lib\awk\misc.h ../../../../../lib/awk/misc.h
80 80
WString WString
3 3
@ -368,7 +368,7 @@ WVList
83 83
MItem MItem
30 30
..\..\..\..\..\lib\awk\parse.h ../../../../../lib/awk/parse.h
84 84
WString WString
3 3
@ -386,7 +386,7 @@ WVList
87 87
MItem MItem
28 28
..\..\..\..\..\lib\awk\rio.h ../../../../../lib/awk/rio.h
88 88
WString WString
3 3
@ -404,7 +404,7 @@ WVList
91 91
MItem MItem
28 28
..\..\..\..\..\lib\awk\run.h ../../../../../lib/awk/run.h
92 92
WString WString
3 3
@ -422,7 +422,7 @@ WVList
95 95
MItem MItem
29 29
..\..\..\..\..\lib\awk\tree.h ../../../../../lib/awk/tree.h
96 96
WString WString
3 3
@ -440,7 +440,7 @@ WVList
99 99
MItem MItem
28 28
..\..\..\..\..\lib\awk\val.h ../../../../../lib/awk/val.h
100 100
WString WString
3 3

View File

@ -68,7 +68,7 @@ o?2??Include directories:
17 17
WString WString
54 54
"$(%watcom)\h;$(%watcom)\h\os2;..\..\..\..\..\include" "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include"
0 0
18 18
WVList WVList
@ -80,7 +80,7 @@ WVList
19 19
MItem MItem
35 35
..\..\..\..\..\lib\cmn\alg_search.c ../../../../../lib/cmn/alg_search.c
20 20
WString WString
4 4
@ -98,7 +98,7 @@ WVList
23 23
MItem MItem
33 33
..\..\..\..\..\lib\cmn\alg_sort.c ../../../../../lib/cmn/alg_sort.c
24 24
WString WString
4 4
@ -116,7 +116,7 @@ WVList
27 27
MItem MItem
31 31
..\..\..\..\..\lib\cmn\assert.c ../../../../../lib/cmn/assert.c
28 28
WString WString
4 4
@ -134,7 +134,7 @@ WVList
31 31
MItem MItem
28 28
..\..\..\..\..\lib\cmn\chr.c ../../../../../lib/cmn/chr.c
32 32
WString WString
4 4
@ -152,7 +152,7 @@ WVList
35 35
MItem MItem
32 32
..\..\..\..\..\lib\cmn\chr_cnv.c ../../../../../lib/cmn/chr_cnv.c
36 36
WString WString
4 4
@ -170,7 +170,7 @@ WVList
39 39
MItem MItem
28 28
..\..\..\..\..\lib\cmn\dll.c ../../../../../lib/cmn/dll.c
40 40
WString WString
4 4
@ -188,7 +188,7 @@ WVList
43 43
MItem MItem
28 28
..\..\..\..\..\lib\cmn\fio.c ../../../../../lib/cmn/fio.c
44 44
WString WString
4 4
@ -206,7 +206,7 @@ WVList
47 47
MItem MItem
28 28
..\..\..\..\..\lib\cmn\fma.c ../../../../../lib/cmn/fma.c
48 48
WString WString
4 4
@ -224,7 +224,7 @@ WVList
51 51
MItem MItem
28 28
..\..\..\..\..\lib\cmn\gdl.c ../../../../../lib/cmn/gdl.c
52 52
WString WString
4 4
@ -242,7 +242,7 @@ WVList
55 55
MItem MItem
28 28
..\..\..\..\..\lib\cmn\htb.c ../../../../../lib/cmn/htb.c
56 56
WString WString
4 4
@ -260,7 +260,7 @@ WVList
59 59
MItem MItem
28 28
..\..\..\..\..\lib\cmn\lda.c ../../../../../lib/cmn/lda.c
60 60
WString WString
4 4
@ -278,7 +278,7 @@ WVList
63 63
MItem MItem
29 29
..\..\..\..\..\lib\cmn\main.c ../../../../../lib/cmn/main.c
64 64
WString WString
4 4
@ -296,7 +296,7 @@ WVList
67 67
MItem MItem
28 28
..\..\..\..\..\lib\cmn\mem.c ../../../../../lib/cmn/mem.c
68 68
WString WString
4 4
@ -314,7 +314,7 @@ WVList
71 71
MItem MItem
29 29
..\..\..\..\..\lib\cmn\misc.c ../../../../../lib/cmn/misc.c
72 72
WString WString
4 4
@ -332,7 +332,7 @@ WVList
75 75
MItem MItem
28 28
..\..\..\..\..\lib\cmn\oht.c ../../../../../lib/cmn/oht.c
76 76
WString WString
4 4
@ -350,7 +350,7 @@ WVList
79 79
MItem MItem
28 28
..\..\..\..\..\lib\cmn\opt.c ../../../../../lib/cmn/opt.c
80 80
WString WString
4 4
@ -368,7 +368,7 @@ WVList
83 83
MItem MItem
28 28
..\..\..\..\..\lib\cmn\pio.c ../../../../../lib/cmn/pio.c
84 84
WString WString
4 4
@ -386,7 +386,7 @@ WVList
87 87
MItem MItem
28 28
..\..\..\..\..\lib\cmn\rbt.c ../../../../../lib/cmn/rbt.c
88 88
WString WString
4 4
@ -404,7 +404,7 @@ WVList
91 91
MItem MItem
28 28
..\..\..\..\..\lib\cmn\rex.c ../../../../../lib/cmn/rex.c
92 92
WString WString
4 4
@ -422,7 +422,7 @@ WVList
95 95
MItem MItem
28 28
..\..\..\..\..\lib\cmn\sio.c ../../../../../lib/cmn/sio.c
96 96
WString WString
4 4
@ -440,7 +440,7 @@ WVList
99 99
MItem MItem
28 28
..\..\..\..\..\lib\cmn\sll.c ../../../../../lib/cmn/sll.c
100 100
WString WString
4 4
@ -458,7 +458,7 @@ WVList
103 103
MItem MItem
30 30
..\..\..\..\..\lib\cmn\stdio.c ../../../../../lib/cmn/stdio.c
104 104
WString WString
4 4
@ -476,7 +476,7 @@ WVList
107 107
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_beg.c ../../../../../lib/cmn/str_beg.c
108 108
WString WString
4 4
@ -494,7 +494,7 @@ WVList
111 111
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_cat.c ../../../../../lib/cmn/str_cat.c
112 112
WString WString
4 4
@ -512,7 +512,7 @@ WVList
115 115
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_chr.c ../../../../../lib/cmn/str_chr.c
116 116
WString WString
4 4
@ -530,7 +530,7 @@ WVList
119 119
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_cmp.c ../../../../../lib/cmn/str_cmp.c
120 120
WString WString
4 4
@ -548,7 +548,7 @@ WVList
123 123
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_cnv.c ../../../../../lib/cmn/str_cnv.c
124 124
WString WString
4 4
@ -566,7 +566,7 @@ WVList
127 127
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_cpy.c ../../../../../lib/cmn/str_cpy.c
128 128
WString WString
4 4
@ -584,7 +584,7 @@ WVList
131 131
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_del.c ../../../../../lib/cmn/str_del.c
132 132
WString WString
4 4
@ -602,7 +602,7 @@ WVList
135 135
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_dup.c ../../../../../lib/cmn/str_dup.c
136 136
WString WString
4 4
@ -620,7 +620,7 @@ WVList
139 139
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_dynm.c ../../../../../lib/cmn/str_dynm.c
140 140
WString WString
4 4
@ -638,7 +638,7 @@ WVList
143 143
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_dynw.c ../../../../../lib/cmn/str_dynw.c
144 144
WString WString
4 4
@ -656,7 +656,7 @@ WVList
147 147
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_end.c ../../../../../lib/cmn/str_end.c
148 148
WString WString
4 4
@ -674,7 +674,7 @@ WVList
151 151
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_excl.c ../../../../../lib/cmn/str_excl.c
152 152
WString WString
4 4
@ -692,7 +692,7 @@ WVList
155 155
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_fcpy.c ../../../../../lib/cmn/str_fcpy.c
156 156
WString WString
4 4
@ -710,7 +710,7 @@ WVList
159 159
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_incl.c ../../../../../lib/cmn/str_incl.c
160 160
WString WString
4 4
@ -728,7 +728,7 @@ WVList
163 163
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_len.c ../../../../../lib/cmn/str_len.c
164 164
WString WString
4 4
@ -746,7 +746,7 @@ WVList
167 167
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_pac.c ../../../../../lib/cmn/str_pac.c
168 168
WString WString
4 4
@ -764,7 +764,7 @@ WVList
171 171
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_pbrk.c ../../../../../lib/cmn/str_pbrk.c
172 172
WString WString
4 4
@ -782,7 +782,7 @@ WVList
175 175
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_put.c ../../../../../lib/cmn/str_put.c
176 176
WString WString
4 4
@ -800,7 +800,7 @@ WVList
179 179
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_rev.c ../../../../../lib/cmn/str_rev.c
180 180
WString WString
4 4
@ -818,7 +818,7 @@ WVList
183 183
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_rot.c ../../../../../lib/cmn/str_rot.c
184 184
WString WString
4 4
@ -836,7 +836,7 @@ WVList
187 187
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_set.c ../../../../../lib/cmn/str_set.c
188 188
WString WString
4 4
@ -854,7 +854,7 @@ WVList
191 191
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_spl.c ../../../../../lib/cmn/str_spl.c
192 192
WString WString
4 4
@ -872,7 +872,7 @@ WVList
195 195
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_spn.c ../../../../../lib/cmn/str_spn.c
196 196
WString WString
4 4
@ -890,7 +890,7 @@ WVList
199 199
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_str.c ../../../../../lib/cmn/str_str.c
200 200
WString WString
4 4
@ -908,7 +908,7 @@ WVList
203 203
MItem MItem
34 34
..\..\..\..\..\lib\cmn\str_subst.c ../../../../../lib/cmn/str_subst.c
204 204
WString WString
4 4
@ -926,7 +926,7 @@ WVList
207 207
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_tok.c ../../../../../lib/cmn/str_tok.c
208 208
WString WString
4 4
@ -944,7 +944,7 @@ WVList
211 211
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_trm.c ../../../../../lib/cmn/str_trm.c
212 212
WString WString
4 4
@ -962,7 +962,7 @@ WVList
215 215
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_word.c ../../../../../lib/cmn/str_word.c
216 216
WString WString
4 4
@ -980,7 +980,7 @@ WVList
219 219
MItem MItem
29 29
..\..\..\..\..\lib\cmn\time.c ../../../../../lib/cmn/time.c
220 220
WString WString
4 4
@ -998,7 +998,7 @@ WVList
223 223
MItem MItem
28 28
..\..\..\..\..\lib\cmn\tio.c ../../../../../lib/cmn/tio.c
224 224
WString WString
4 4
@ -1016,7 +1016,7 @@ WVList
227 227
MItem MItem
32 32
..\..\..\..\..\lib\cmn\tio_get.c ../../../../../lib/cmn/tio_get.c
228 228
WString WString
4 4
@ -1034,7 +1034,7 @@ WVList
231 231
MItem MItem
32 32
..\..\..\..\..\lib\cmn\tio_put.c ../../../../../lib/cmn/tio_put.c
232 232
WString WString
4 4
@ -1052,7 +1052,7 @@ WVList
235 235
MItem MItem
28 28
..\..\..\..\..\lib\cmn\xma.c ../../../../../lib/cmn/xma.c
236 236
WString WString
4 4
@ -1088,7 +1088,7 @@ WVList
243 243
MItem MItem
28 28
..\..\..\..\..\lib\cmn\mem.h ../../../../../lib/cmn/mem.h
244 244
WString WString
3 3
@ -1106,7 +1106,7 @@ WVList
247 247
MItem MItem
32 32
..\..\..\..\..\lib\cmn\syscall.h ../../../../../lib/cmn/syscall.h
248 248
WString WString
3 3

View File

@ -68,7 +68,7 @@ o?2??Include directories:
17 17
WString WString
54 54
"$(%watcom)\h;$(%watcom)\h\os2;..\..\..\..\..\include" "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include"
0 0
18 18
WVList WVList
@ -80,7 +80,7 @@ WVList
19 19
MItem MItem
28 28
..\..\..\..\..\lib\scm\err.c ../../../../../lib/scm/err.c
20 20
WString WString
4 4
@ -98,7 +98,7 @@ WVList
23 23
MItem MItem
29 29
..\..\..\..\..\lib\scm\eval.c ../../../../../lib/scm/eval.c
24 24
WString WString
4 4
@ -116,7 +116,7 @@ WVList
27 27
MItem MItem
28 28
..\..\..\..\..\lib\scm\mem.c ../../../../../lib/scm/mem.c
28 28
WString WString
4 4
@ -134,7 +134,7 @@ WVList
31 31
MItem MItem
30 30
..\..\..\..\..\lib\scm\print.c ../../../../../lib/scm/print.c
32 32
WString WString
4 4
@ -152,7 +152,7 @@ WVList
35 35
MItem MItem
29 29
..\..\..\..\..\lib\scm\read.c ../../../../../lib/scm/read.c
36 36
WString WString
4 4
@ -170,7 +170,7 @@ WVList
39 39
MItem MItem
28 28
..\..\..\..\..\lib\scm\scm.c ../../../../../lib/scm/scm.c
40 40
WString WString
4 4
@ -206,7 +206,7 @@ WVList
47 47
MItem MItem
28 28
..\..\..\..\..\lib\scm\scm.h ../../../../../lib/scm/scm.h
48 48
WString WString
3 3

View File

@ -68,7 +68,7 @@ o?2??Include directories:
17 17
WString WString
54 54
"$(%watcom)\h;$(%watcom)\h\os2;..\..\..\..\..\include" "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include"
0 0
18 18
WVList WVList
@ -80,7 +80,7 @@ WVList
19 19
MItem MItem
28 28
..\..\..\..\..\lib\sed\err.c ../../../../../lib/sed/err.c
20 20
WString WString
4 4
@ -98,7 +98,7 @@ WVList
23 23
MItem MItem
28 28
..\..\..\..\..\lib\sed\sed.c ../../../../../lib/sed/sed.c
24 24
WString WString
4 4
@ -116,7 +116,7 @@ WVList
27 27
MItem MItem
28 28
..\..\..\..\..\lib\sed\std.c ../../../../../lib/sed/std.c
28 28
WString WString
4 4
@ -152,7 +152,7 @@ WVList
35 35
MItem MItem
28 28
..\..\..\..\..\lib\sed\sed.h ../../../../../lib/sed/sed.h
36 36
WString WString
3 3

View File

@ -0,0 +1,129 @@
40
targetIdent
0
MProject
1
MComponent
0
2
WString
4
NEXE
3
WString
5
nc2eo
1
0
1
4
MCommand
0
5
MCommand
0
6
MItem
10
qseawk.exe
7
WString
4
NEXE
8
WVList
2
9
MVState
10
WString
7
WINLINK
11
WString
28
?????Library directories(;):
1
12
WString
27
../../lib/cmn ../../lib/awk
0
13
MVState
14
WString
7
WINLINK
15
WString
18
?????Libraries(,):
1
16
WString
19
qsecmn qseawk psapi
0
17
WVList
0
-1
1
1
0
18
WPickList
2
19
MItem
3
*.c
20
WString
4
COBJ
21
WVList
1
22
MVState
23
WString
3
WCC
24
WString
25
n????Include directories:
1
25
WString
53
"$(%watcom)/h;$(%watcom)/h/nt;../../../../../include"
0
26
WVList
0
-1
1
1
0
27
MItem
28
../../../../../cmd/awk/awk.c
28
WString
4
COBJ
29
WVList
0
30
WVList
0
19
1
1
0

View File

@ -109,7 +109,7 @@ n????Include directories:
28 28
WString WString
53 53
"$(%watcom)/h;$(%watcom)/h/nt;..\..\..\..\..\include" "$(%watcom)/h;$(%watcom)/h/nt;../../../../../include"
0 0
29 29
WVList WVList
@ -130,7 +130,7 @@ WVList
33 33
MItem MItem
28 28
..\..\..\..\..\cmd\scm\scm.c ../../../../../cmd/scm/scm.c
34 34
WString WString
4 4

View File

@ -68,7 +68,7 @@ n????Include directories:
17 17
WString WString
53 53
"$(%watcom)/h;$(%watcom)/h/nt;..\..\..\..\..\include" "$(%watcom)/h;$(%watcom)/h/nt;../../../../../include"
0 0
18 18
WVList WVList
@ -80,7 +80,7 @@ WVList
19 19
MItem MItem
28 28
..\..\..\..\..\lib\awk\awk.c ../../../../../lib/awk/awk.c
20 20
WString WString
4 4
@ -98,7 +98,7 @@ WVList
23 23
MItem MItem
28 28
..\..\..\..\..\lib\awk\err.c ../../../../../lib/awk/err.c
24 24
WString WString
4 4
@ -116,7 +116,7 @@ WVList
27 27
MItem MItem
28 28
..\..\..\..\..\lib\awk\fnc.c ../../../../../lib/awk/fnc.c
28 28
WString WString
4 4
@ -134,7 +134,7 @@ WVList
31 31
MItem MItem
29 29
..\..\..\..\..\lib\awk\misc.c ../../../../../lib/awk/misc.c
32 32
WString WString
4 4
@ -152,7 +152,7 @@ WVList
35 35
MItem MItem
30 30
..\..\..\..\..\lib\awk\parse.c ../../../../../lib/awk/parse.c
36 36
WString WString
4 4
@ -170,7 +170,7 @@ WVList
39 39
MItem MItem
28 28
..\..\..\..\..\lib\awk\rec.c ../../../../../lib/awk/rec.c
40 40
WString WString
4 4
@ -188,7 +188,7 @@ WVList
43 43
MItem MItem
28 28
..\..\..\..\..\lib\awk\rio.c ../../../../../lib/awk/rio.c
44 44
WString WString
4 4
@ -206,7 +206,7 @@ WVList
47 47
MItem MItem
28 28
..\..\..\..\..\lib\awk\run.c ../../../../../lib/awk/run.c
48 48
WString WString
4 4
@ -224,7 +224,7 @@ WVList
51 51
MItem MItem
28 28
..\..\..\..\..\lib\awk\std.c ../../../../../lib/awk/std.c
52 52
WString WString
4 4
@ -242,7 +242,7 @@ WVList
55 55
MItem MItem
29 29
..\..\..\..\..\lib\awk\tree.c ../../../../../lib/awk/tree.c
56 56
WString WString
4 4
@ -260,7 +260,7 @@ WVList
59 59
MItem MItem
28 28
..\..\..\..\..\lib\awk\val.c ../../../../../lib/awk/val.c
60 60
WString WString
4 4
@ -296,7 +296,7 @@ WVList
67 67
MItem MItem
28 28
..\..\..\..\..\lib\awk\awk.h ../../../../../lib/awk/awk.h
68 68
WString WString
3 3
@ -314,7 +314,7 @@ WVList
71 71
MItem MItem
28 28
..\..\..\..\..\lib\awk\err.h ../../../../../lib/awk/err.h
72 72
WString WString
3 3
@ -332,7 +332,7 @@ WVList
75 75
MItem MItem
28 28
..\..\..\..\..\lib\awk\fnc.h ../../../../../lib/awk/fnc.h
76 76
WString WString
3 3
@ -350,7 +350,7 @@ WVList
79 79
MItem MItem
29 29
..\..\..\..\..\lib\awk\misc.h ../../../../../lib/awk/misc.h
80 80
WString WString
3 3
@ -368,7 +368,7 @@ WVList
83 83
MItem MItem
30 30
..\..\..\..\..\lib\awk\parse.h ../../../../../lib/awk/parse.h
84 84
WString WString
3 3
@ -386,7 +386,7 @@ WVList
87 87
MItem MItem
28 28
..\..\..\..\..\lib\awk\rio.h ../../../../../lib/awk/rio.h
88 88
WString WString
3 3
@ -404,7 +404,7 @@ WVList
91 91
MItem MItem
28 28
..\..\..\..\..\lib\awk\run.h ../../../../../lib/awk/run.h
92 92
WString WString
3 3
@ -422,7 +422,7 @@ WVList
95 95
MItem MItem
29 29
..\..\..\..\..\lib\awk\tree.h ../../../../../lib/awk/tree.h
96 96
WString WString
3 3
@ -440,7 +440,7 @@ WVList
99 99
MItem MItem
28 28
..\..\..\..\..\lib\awk\val.h ../../../../../lib/awk/val.h
100 100
WString WString
3 3

View File

@ -68,7 +68,7 @@ n????Include directories:
17 17
WString WString
53 53
"$(%watcom)/h;$(%watcom)/h/nt;..\..\..\..\..\include" "$(%watcom)/h;$(%watcom)/h/nt;../../../../../include"
0 0
18 18
WVList WVList
@ -80,7 +80,7 @@ WVList
19 19
MItem MItem
35 35
..\..\..\..\..\lib\cmn\alg_search.c ../../../../../lib/cmn/alg_search.c
20 20
WString WString
4 4
@ -98,7 +98,7 @@ WVList
23 23
MItem MItem
33 33
..\..\..\..\..\lib\cmn\alg_sort.c ../../../../../lib/cmn/alg_sort.c
24 24
WString WString
4 4
@ -116,7 +116,7 @@ WVList
27 27
MItem MItem
31 31
..\..\..\..\..\lib\cmn\assert.c ../../../../../lib/cmn/assert.c
28 28
WString WString
4 4
@ -134,7 +134,7 @@ WVList
31 31
MItem MItem
28 28
..\..\..\..\..\lib\cmn\chr.c ../../../../../lib/cmn/chr.c
32 32
WString WString
4 4
@ -152,7 +152,7 @@ WVList
35 35
MItem MItem
32 32
..\..\..\..\..\lib\cmn\chr_cnv.c ../../../../../lib/cmn/chr_cnv.c
36 36
WString WString
4 4
@ -170,7 +170,7 @@ WVList
39 39
MItem MItem
28 28
..\..\..\..\..\lib\cmn\dll.c ../../../../../lib/cmn/dll.c
40 40
WString WString
4 4
@ -188,7 +188,7 @@ WVList
43 43
MItem MItem
28 28
..\..\..\..\..\lib\cmn\fio.c ../../../../../lib/cmn/fio.c
44 44
WString WString
4 4
@ -206,7 +206,7 @@ WVList
47 47
MItem MItem
28 28
..\..\..\..\..\lib\cmn\fma.c ../../../../../lib/cmn/fma.c
48 48
WString WString
4 4
@ -224,7 +224,7 @@ WVList
51 51
MItem MItem
28 28
..\..\..\..\..\lib\cmn\gdl.c ../../../../../lib/cmn/gdl.c
52 52
WString WString
4 4
@ -242,7 +242,7 @@ WVList
55 55
MItem MItem
28 28
..\..\..\..\..\lib\cmn\htb.c ../../../../../lib/cmn/htb.c
56 56
WString WString
4 4
@ -260,7 +260,7 @@ WVList
59 59
MItem MItem
28 28
..\..\..\..\..\lib\cmn\lda.c ../../../../../lib/cmn/lda.c
60 60
WString WString
4 4
@ -278,7 +278,7 @@ WVList
63 63
MItem MItem
29 29
..\..\..\..\..\lib\cmn\main.c ../../../../../lib/cmn/main.c
64 64
WString WString
4 4
@ -296,7 +296,7 @@ WVList
67 67
MItem MItem
28 28
..\..\..\..\..\lib\cmn\mem.c ../../../../../lib/cmn/mem.c
68 68
WString WString
4 4
@ -314,7 +314,7 @@ WVList
71 71
MItem MItem
29 29
..\..\..\..\..\lib\cmn\misc.c ../../../../../lib/cmn/misc.c
72 72
WString WString
4 4
@ -332,7 +332,7 @@ WVList
75 75
MItem MItem
28 28
..\..\..\..\..\lib\cmn\oht.c ../../../../../lib/cmn/oht.c
76 76
WString WString
4 4
@ -350,7 +350,7 @@ WVList
79 79
MItem MItem
28 28
..\..\..\..\..\lib\cmn\opt.c ../../../../../lib/cmn/opt.c
80 80
WString WString
4 4
@ -368,7 +368,7 @@ WVList
83 83
MItem MItem
28 28
..\..\..\..\..\lib\cmn\pio.c ../../../../../lib/cmn/pio.c
84 84
WString WString
4 4
@ -386,7 +386,7 @@ WVList
87 87
MItem MItem
28 28
..\..\..\..\..\lib\cmn\rbt.c ../../../../../lib/cmn/rbt.c
88 88
WString WString
4 4
@ -404,7 +404,7 @@ WVList
91 91
MItem MItem
28 28
..\..\..\..\..\lib\cmn\rex.c ../../../../../lib/cmn/rex.c
92 92
WString WString
4 4
@ -422,7 +422,7 @@ WVList
95 95
MItem MItem
28 28
..\..\..\..\..\lib\cmn\sio.c ../../../../../lib/cmn/sio.c
96 96
WString WString
4 4
@ -440,7 +440,7 @@ WVList
99 99
MItem MItem
28 28
..\..\..\..\..\lib\cmn\sll.c ../../../../../lib/cmn/sll.c
100 100
WString WString
4 4
@ -458,7 +458,7 @@ WVList
103 103
MItem MItem
30 30
..\..\..\..\..\lib\cmn\stdio.c ../../../../../lib/cmn/stdio.c
104 104
WString WString
4 4
@ -476,7 +476,7 @@ WVList
107 107
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_beg.c ../../../../../lib/cmn/str_beg.c
108 108
WString WString
4 4
@ -494,7 +494,7 @@ WVList
111 111
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_cat.c ../../../../../lib/cmn/str_cat.c
112 112
WString WString
4 4
@ -512,7 +512,7 @@ WVList
115 115
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_chr.c ../../../../../lib/cmn/str_chr.c
116 116
WString WString
4 4
@ -530,7 +530,7 @@ WVList
119 119
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_cmp.c ../../../../../lib/cmn/str_cmp.c
120 120
WString WString
4 4
@ -548,7 +548,7 @@ WVList
123 123
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_cnv.c ../../../../../lib/cmn/str_cnv.c
124 124
WString WString
4 4
@ -566,7 +566,7 @@ WVList
127 127
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_cpy.c ../../../../../lib/cmn/str_cpy.c
128 128
WString WString
4 4
@ -584,7 +584,7 @@ WVList
131 131
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_del.c ../../../../../lib/cmn/str_del.c
132 132
WString WString
4 4
@ -602,7 +602,7 @@ WVList
135 135
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_dup.c ../../../../../lib/cmn/str_dup.c
136 136
WString WString
4 4
@ -620,7 +620,7 @@ WVList
139 139
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_dynm.c ../../../../../lib/cmn/str_dynm.c
140 140
WString WString
4 4
@ -638,7 +638,7 @@ WVList
143 143
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_dynw.c ../../../../../lib/cmn/str_dynw.c
144 144
WString WString
4 4
@ -656,7 +656,7 @@ WVList
147 147
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_end.c ../../../../../lib/cmn/str_end.c
148 148
WString WString
4 4
@ -674,7 +674,7 @@ WVList
151 151
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_excl.c ../../../../../lib/cmn/str_excl.c
152 152
WString WString
4 4
@ -692,7 +692,7 @@ WVList
155 155
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_fcpy.c ../../../../../lib/cmn/str_fcpy.c
156 156
WString WString
4 4
@ -710,7 +710,7 @@ WVList
159 159
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_incl.c ../../../../../lib/cmn/str_incl.c
160 160
WString WString
4 4
@ -728,7 +728,7 @@ WVList
163 163
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_len.c ../../../../../lib/cmn/str_len.c
164 164
WString WString
4 4
@ -746,7 +746,7 @@ WVList
167 167
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_pac.c ../../../../../lib/cmn/str_pac.c
168 168
WString WString
4 4
@ -764,7 +764,7 @@ WVList
171 171
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_pbrk.c ../../../../../lib/cmn/str_pbrk.c
172 172
WString WString
4 4
@ -782,7 +782,7 @@ WVList
175 175
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_put.c ../../../../../lib/cmn/str_put.c
176 176
WString WString
4 4
@ -800,7 +800,7 @@ WVList
179 179
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_rev.c ../../../../../lib/cmn/str_rev.c
180 180
WString WString
4 4
@ -818,7 +818,7 @@ WVList
183 183
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_rot.c ../../../../../lib/cmn/str_rot.c
184 184
WString WString
4 4
@ -836,7 +836,7 @@ WVList
187 187
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_set.c ../../../../../lib/cmn/str_set.c
188 188
WString WString
4 4
@ -854,7 +854,7 @@ WVList
191 191
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_spl.c ../../../../../lib/cmn/str_spl.c
192 192
WString WString
4 4
@ -872,7 +872,7 @@ WVList
195 195
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_spn.c ../../../../../lib/cmn/str_spn.c
196 196
WString WString
4 4
@ -890,7 +890,7 @@ WVList
199 199
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_str.c ../../../../../lib/cmn/str_str.c
200 200
WString WString
4 4
@ -908,7 +908,7 @@ WVList
203 203
MItem MItem
34 34
..\..\..\..\..\lib\cmn\str_subst.c ../../../../../lib/cmn/str_subst.c
204 204
WString WString
4 4
@ -926,7 +926,7 @@ WVList
207 207
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_tok.c ../../../../../lib/cmn/str_tok.c
208 208
WString WString
4 4
@ -944,7 +944,7 @@ WVList
211 211
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_trm.c ../../../../../lib/cmn/str_trm.c
212 212
WString WString
4 4
@ -962,7 +962,7 @@ WVList
215 215
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_word.c ../../../../../lib/cmn/str_word.c
216 216
WString WString
4 4
@ -980,7 +980,7 @@ WVList
219 219
MItem MItem
29 29
..\..\..\..\..\lib\cmn\time.c ../../../../../lib/cmn/time.c
220 220
WString WString
4 4
@ -998,7 +998,7 @@ WVList
223 223
MItem MItem
28 28
..\..\..\..\..\lib\cmn\tio.c ../../../../../lib/cmn/tio.c
224 224
WString WString
4 4
@ -1016,7 +1016,7 @@ WVList
227 227
MItem MItem
32 32
..\..\..\..\..\lib\cmn\tio_get.c ../../../../../lib/cmn/tio_get.c
228 228
WString WString
4 4
@ -1034,7 +1034,7 @@ WVList
231 231
MItem MItem
32 32
..\..\..\..\..\lib\cmn\tio_put.c ../../../../../lib/cmn/tio_put.c
232 232
WString WString
4 4
@ -1052,7 +1052,7 @@ WVList
235 235
MItem MItem
28 28
..\..\..\..\..\lib\cmn\xma.c ../../../../../lib/cmn/xma.c
236 236
WString WString
4 4
@ -1088,7 +1088,7 @@ WVList
243 243
MItem MItem
28 28
..\..\..\..\..\lib\cmn\mem.h ../../../../../lib/cmn/mem.h
244 244
WString WString
3 3
@ -1106,7 +1106,7 @@ WVList
247 247
MItem MItem
32 32
..\..\..\..\..\lib\cmn\syscall.h ../../../../../lib/cmn/syscall.h
248 248
WString WString
3 3

View File

@ -68,7 +68,7 @@ n????Include directories:
17 17
WString WString
53 53
"$(%watcom)/h;$(%watcom)/h/nt;..\..\..\..\..\include" "$(%watcom)/h;$(%watcom)/h/nt;../../../../../include"
0 0
18 18
WVList WVList
@ -80,7 +80,7 @@ WVList
19 19
MItem MItem
28 28
..\..\..\..\..\lib\scm\err.c ../../../../../lib/scm/err.c
20 20
WString WString
4 4
@ -98,7 +98,7 @@ WVList
23 23
MItem MItem
29 29
..\..\..\..\..\lib\scm\eval.c ../../../../../lib/scm/eval.c
24 24
WString WString
4 4
@ -116,7 +116,7 @@ WVList
27 27
MItem MItem
28 28
..\..\..\..\..\lib\scm\mem.c ../../../../../lib/scm/mem.c
28 28
WString WString
4 4
@ -134,7 +134,7 @@ WVList
31 31
MItem MItem
30 30
..\..\..\..\..\lib\scm\print.c ../../../../../lib/scm/print.c
32 32
WString WString
4 4
@ -152,7 +152,7 @@ WVList
35 35
MItem MItem
29 29
..\..\..\..\..\lib\scm\read.c ../../../../../lib/scm/read.c
36 36
WString WString
4 4
@ -170,7 +170,7 @@ WVList
39 39
MItem MItem
28 28
..\..\..\..\..\lib\scm\scm.c ../../../../../lib/scm/scm.c
40 40
WString WString
4 4
@ -206,7 +206,7 @@ WVList
47 47
MItem MItem
28 28
..\..\..\..\..\lib\scm\scm.h ../../../../../lib/scm/scm.h
48 48
WString WString
3 3

View File

@ -16,7 +16,7 @@ MCommand
4 4
MCommand MCommand
0 0
15 18
5 5
WFileName WFileName
30 30
@ -78,11 +78,23 @@ WFileName
30 30
debug/dos32/lib/cmn/qsecmn.tgt debug/dos32/lib/cmn/qsecmn.tgt
20 20
WVList WFileName
15 30
debug/dos32/lib/awk/qseawk.tgt
21 21
VComponent WFileName
30
debug/dos32/cmd/awk/qseawk.tgt
22 22
WFileName
30
debug/win32/cmd/awk/qseawk.tgt
23
WVList
18
24
VComponent
25
WRect WRect
410 410
1880 1880
@ -90,15 +102,15 @@ WRect
4240 4240
1 1
0 0
23 26
WFileName WFileName
30 30
release/os2/lib/cmn/qsecmn.tgt release/os2/lib/cmn/qsecmn.tgt
28 28
29 29
24 27
VComponent VComponent
25 28
WRect WRect
90 90
1240 1240
@ -106,15 +118,15 @@ WRect
4240 4240
1 1
0 0
26 29
WFileName WFileName
30 30
release/os2/lib/sed/qsesed.tgt release/os2/lib/sed/qsesed.tgt
0 0
0 0
27 30
VComponent VComponent
28 31
WRect WRect
2100 2100
1400 1400
@ -122,15 +134,15 @@ WRect
4240 4240
1 1
0 0
29 32
WFileName WFileName
30 30
release/os2/cmd/sed/qsesed.tgt release/os2/cmd/sed/qsesed.tgt
0 0
1 1
30 33
VComponent VComponent
31 34
WRect WRect
590 590
1080 1080
@ -138,34 +150,18 @@ WRect
4240 4240
1 1
0 0
32 35
WFileName WFileName
30 30
release/os2/lib/scm/qsescm.tgt release/os2/lib/scm/qsescm.tgt
0 0
0 0
33
VComponent
34
WRect
2490
146
5700
4240
1
0
35
WFileName
28
debug/os2/lib/cmn/qsecmn.tgt
0
0
36 36
VComponent VComponent
37 37
WRect WRect
1050 2490
2360 120
5700 5700
4240 4240
1 1
@ -173,15 +169,15 @@ WRect
38 38
WFileName WFileName
28 28
debug/os2/lib/sed/qsesed.tgt debug/os2/lib/cmn/qsecmn.tgt
0
0 0
5
39 39
VComponent VComponent
40 40
WRect WRect
1050
2360 2360
1280
5700 5700
4240 4240
1 1
@ -189,15 +185,15 @@ WRect
41 41
WFileName WFileName
28 28
debug/os2/lib/scm/qsescm.tgt debug/os2/lib/sed/qsesed.tgt
0
0 0
5
42 42
VComponent VComponent
43 43
WRect WRect
2460 2360
2400 1280
5700 5700
4240 4240
1 1
@ -205,28 +201,44 @@ WRect
44 44
WFileName WFileName
28 28
debug/os2/cmd/scm/qsescm.tgt debug/os2/lib/scm/qsescm.tgt
0
0 0
1
45 45
VComponent VComponent
46 46
WRect WRect
2460
2400
5700
4240
1
0
47
WFileName
28
debug/os2/cmd/scm/qsescm.tgt
0
1
48
VComponent
49
WRect
980 980
1080 1080
5700 5700
4240 4240
1 1
0 0
47 50
WFileName WFileName
30 30
debug/win32/lib/cmn/qsecmn.tgt debug/win32/lib/cmn/qsecmn.tgt
29 29
30 30
48 51
VComponent VComponent
49 52
WRect WRect
200 200
1240 1240
@ -234,31 +246,31 @@ WRect
4240 4240
1 1
0 0
50 53
WFileName WFileName
30 30
debug/win32/lib/scm/qsescm.tgt debug/win32/lib/scm/qsescm.tgt
0 0
0 0
51 54
VComponent VComponent
52 55
WRect WRect
3280 3280
40 40
5700 5700
4240 4240
1
0 0
53 0
56
WFileName WFileName
30 30
debug/win32/cmd/scm/qsescm.tgt debug/win32/cmd/scm/qsescm.tgt
0 0
0 0
54 57
VComponent VComponent
55 58
WRect WRect
240 240
80 80
@ -266,15 +278,15 @@ WRect
4240 4240
1 1
0 0
56 59
WFileName WFileName
28 28
debug/os2/lib/awk/qseawk.tgt debug/os2/lib/awk/qseawk.tgt
8 8
12 12
57 60
VComponent VComponent
58 61
WRect WRect
830 830
2720 2720
@ -282,31 +294,31 @@ WRect
4240 4240
1 1
0 0
59 62
WFileName WFileName
30 30
debug/win32/lib/awk/qseawk.tgt debug/win32/lib/awk/qseawk.tgt
8 8
9 9
60 63
VComponent VComponent
61 64
WRect WRect
2920 930
880 880
5700 5700
4240 4240
1 1
0 0
62 65
WFileName WFileName
28 28
debug/os2/cmd/awk/qseawk.tgt debug/os2/cmd/awk/qseawk.tgt
0 0
1 1
63 66
VComponent VComponent
64 67
WRect WRect
1070 1070
760 760
@ -314,10 +326,58 @@ WRect
4240 4240
1 1
0 0
65 68
WFileName WFileName
30 30
debug/dos32/lib/cmn/qsecmn.tgt debug/dos32/lib/cmn/qsecmn.tgt
16
22
69
VComponent
70
WRect
1640
1360
5700
4240
1
0 0
7 71
33 WFileName
30
debug/dos32/lib/awk/qseawk.tgt
0
0
72
VComponent
73
WRect
0
213
5700
4240
1
0
74
WFileName
30
debug/dos32/cmd/awk/qseawk.tgt
0
1
75
VComponent
76
WRect
1650
1266
5700
4253
0
0
77
WFileName
30
debug/win32/cmd/awk/qseawk.tgt
0
1
75

View File

@ -124,7 +124,7 @@ o?2??Include directories:
31 31
WString WString
54 54
"$(%watcom)/h;$(%watcom)/h/os2;..\..\..\..\..\include" "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include"
0 0
32 32
MVState MVState
@ -152,7 +152,7 @@ WVList
37 37
MItem MItem
28 28
..\..\..\..\..\cmd\sed\sed.c ../../../../../cmd/sed/sed.c
38 38
WString WString
4 4

View File

@ -144,7 +144,7 @@ WVList
35 35
MItem MItem
35 35
..\..\..\..\..\lib\cmn\alg_search.c ../../../../../lib/cmn/alg_search.c
36 36
WString WString
4 4
@ -162,7 +162,7 @@ WVList
39 39
MItem MItem
33 33
..\..\..\..\..\lib\cmn\alg_sort.c ../../../../../lib/cmn/alg_sort.c
40 40
WString WString
4 4
@ -180,7 +180,7 @@ WVList
43 43
MItem MItem
31 31
..\..\..\..\..\lib\cmn\assert.c ../../../../../lib/cmn/assert.c
44 44
WString WString
4 4
@ -198,7 +198,7 @@ WVList
47 47
MItem MItem
28 28
..\..\..\..\..\lib\cmn\chr.c ../../../../../lib/cmn/chr.c
48 48
WString WString
4 4
@ -216,7 +216,7 @@ WVList
51 51
MItem MItem
32 32
..\..\..\..\..\lib\cmn\chr_cnv.c ../../../../../lib/cmn/chr_cnv.c
52 52
WString WString
4 4
@ -234,7 +234,7 @@ WVList
55 55
MItem MItem
28 28
..\..\..\..\..\lib\cmn\dll.c ../../../../../lib/cmn/dll.c
56 56
WString WString
4 4
@ -252,7 +252,7 @@ WVList
59 59
MItem MItem
28 28
..\..\..\..\..\lib\cmn\fio.c ../../../../../lib/cmn/fio.c
60 60
WString WString
4 4
@ -270,7 +270,7 @@ WVList
63 63
MItem MItem
28 28
..\..\..\..\..\lib\cmn\fma.c ../../../../../lib/cmn/fma.c
64 64
WString WString
4 4
@ -288,7 +288,7 @@ WVList
67 67
MItem MItem
28 28
..\..\..\..\..\lib\cmn\gdl.c ../../../../../lib/cmn/gdl.c
68 68
WString WString
4 4
@ -306,7 +306,7 @@ WVList
71 71
MItem MItem
28 28
..\..\..\..\..\lib\cmn\htb.c ../../../../../lib/cmn/htb.c
72 72
WString WString
4 4
@ -324,7 +324,7 @@ WVList
75 75
MItem MItem
28 28
..\..\..\..\..\lib\cmn\lda.c ../../../../../lib/cmn/lda.c
76 76
WString WString
4 4
@ -342,7 +342,7 @@ WVList
79 79
MItem MItem
29 29
..\..\..\..\..\lib\cmn\main.c ../../../../../lib/cmn/main.c
80 80
WString WString
4 4
@ -360,7 +360,7 @@ WVList
83 83
MItem MItem
28 28
..\..\..\..\..\lib\cmn\mem.c ../../../../../lib/cmn/mem.c
84 84
WString WString
4 4
@ -378,7 +378,7 @@ WVList
87 87
MItem MItem
29 29
..\..\..\..\..\lib\cmn\misc.c ../../../../../lib/cmn/misc.c
88 88
WString WString
4 4
@ -396,7 +396,7 @@ WVList
91 91
MItem MItem
28 28
..\..\..\..\..\lib\cmn\oht.c ../../../../../lib/cmn/oht.c
92 92
WString WString
4 4
@ -414,7 +414,7 @@ WVList
95 95
MItem MItem
28 28
..\..\..\..\..\lib\cmn\opt.c ../../../../../lib/cmn/opt.c
96 96
WString WString
4 4
@ -432,7 +432,7 @@ WVList
99 99
MItem MItem
28 28
..\..\..\..\..\lib\cmn\pio.c ../../../../../lib/cmn/pio.c
100 100
WString WString
4 4
@ -450,7 +450,7 @@ WVList
103 103
MItem MItem
28 28
..\..\..\..\..\lib\cmn\rbt.c ../../../../../lib/cmn/rbt.c
104 104
WString WString
4 4
@ -468,7 +468,7 @@ WVList
107 107
MItem MItem
28 28
..\..\..\..\..\lib\cmn\rex.c ../../../../../lib/cmn/rex.c
108 108
WString WString
4 4
@ -486,7 +486,7 @@ WVList
111 111
MItem MItem
28 28
..\..\..\..\..\lib\cmn\sio.c ../../../../../lib/cmn/sio.c
112 112
WString WString
4 4
@ -504,7 +504,7 @@ WVList
115 115
MItem MItem
28 28
..\..\..\..\..\lib\cmn\sll.c ../../../../../lib/cmn/sll.c
116 116
WString WString
4 4
@ -522,7 +522,7 @@ WVList
119 119
MItem MItem
30 30
..\..\..\..\..\lib\cmn\stdio.c ../../../../../lib/cmn/stdio.c
120 120
WString WString
4 4
@ -540,7 +540,7 @@ WVList
123 123
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_beg.c ../../../../../lib/cmn/str_beg.c
124 124
WString WString
4 4
@ -558,7 +558,7 @@ WVList
127 127
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_cat.c ../../../../../lib/cmn/str_cat.c
128 128
WString WString
4 4
@ -576,7 +576,7 @@ WVList
131 131
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_chr.c ../../../../../lib/cmn/str_chr.c
132 132
WString WString
4 4
@ -594,7 +594,7 @@ WVList
135 135
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_cmp.c ../../../../../lib/cmn/str_cmp.c
136 136
WString WString
4 4
@ -612,7 +612,7 @@ WVList
139 139
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_cnv.c ../../../../../lib/cmn/str_cnv.c
140 140
WString WString
4 4
@ -630,7 +630,7 @@ WVList
143 143
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_cpy.c ../../../../../lib/cmn/str_cpy.c
144 144
WString WString
4 4
@ -648,7 +648,7 @@ WVList
147 147
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_del.c ../../../../../lib/cmn/str_del.c
148 148
WString WString
4 4
@ -666,7 +666,7 @@ WVList
151 151
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_dup.c ../../../../../lib/cmn/str_dup.c
152 152
WString WString
4 4
@ -684,7 +684,7 @@ WVList
155 155
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_dynm.c ../../../../../lib/cmn/str_dynm.c
156 156
WString WString
4 4
@ -702,7 +702,7 @@ WVList
159 159
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_dynw.c ../../../../../lib/cmn/str_dynw.c
160 160
WString WString
4 4
@ -720,7 +720,7 @@ WVList
163 163
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_end.c ../../../../../lib/cmn/str_end.c
164 164
WString WString
4 4
@ -738,7 +738,7 @@ WVList
167 167
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_excl.c ../../../../../lib/cmn/str_excl.c
168 168
WString WString
4 4
@ -756,7 +756,7 @@ WVList
171 171
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_fcpy.c ../../../../../lib/cmn/str_fcpy.c
172 172
WString WString
4 4
@ -774,7 +774,7 @@ WVList
175 175
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_incl.c ../../../../../lib/cmn/str_incl.c
176 176
WString WString
4 4
@ -792,7 +792,7 @@ WVList
179 179
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_len.c ../../../../../lib/cmn/str_len.c
180 180
WString WString
4 4
@ -810,7 +810,7 @@ WVList
183 183
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_pac.c ../../../../../lib/cmn/str_pac.c
184 184
WString WString
4 4
@ -828,7 +828,7 @@ WVList
187 187
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_pbrk.c ../../../../../lib/cmn/str_pbrk.c
188 188
WString WString
4 4
@ -846,7 +846,7 @@ WVList
191 191
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_put.c ../../../../../lib/cmn/str_put.c
192 192
WString WString
4 4
@ -864,7 +864,7 @@ WVList
195 195
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_rev.c ../../../../../lib/cmn/str_rev.c
196 196
WString WString
4 4
@ -882,7 +882,7 @@ WVList
199 199
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_rot.c ../../../../../lib/cmn/str_rot.c
200 200
WString WString
4 4
@ -900,7 +900,7 @@ WVList
203 203
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_set.c ../../../../../lib/cmn/str_set.c
204 204
WString WString
4 4
@ -918,7 +918,7 @@ WVList
207 207
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_spl.c ../../../../../lib/cmn/str_spl.c
208 208
WString WString
4 4
@ -936,7 +936,7 @@ WVList
211 211
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_spn.c ../../../../../lib/cmn/str_spn.c
212 212
WString WString
4 4
@ -954,7 +954,7 @@ WVList
215 215
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_str.c ../../../../../lib/cmn/str_str.c
216 216
WString WString
4 4
@ -972,7 +972,7 @@ WVList
219 219
MItem MItem
34 34
..\..\..\..\..\lib\cmn\str_subst.c ../../../../../lib/cmn/str_subst.c
220 220
WString WString
4 4
@ -990,7 +990,7 @@ WVList
223 223
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_tok.c ../../../../../lib/cmn/str_tok.c
224 224
WString WString
4 4
@ -1008,7 +1008,7 @@ WVList
227 227
MItem MItem
32 32
..\..\..\..\..\lib\cmn\str_trm.c ../../../../../lib/cmn/str_trm.c
228 228
WString WString
4 4
@ -1026,7 +1026,7 @@ WVList
231 231
MItem MItem
33 33
..\..\..\..\..\lib\cmn\str_word.c ../../../../../lib/cmn/str_word.c
232 232
WString WString
4 4
@ -1044,7 +1044,7 @@ WVList
235 235
MItem MItem
29 29
..\..\..\..\..\lib\cmn\time.c ../../../../../lib/cmn/time.c
236 236
WString WString
4 4
@ -1062,7 +1062,7 @@ WVList
239 239
MItem MItem
28 28
..\..\..\..\..\lib\cmn\tio.c ../../../../../lib/cmn/tio.c
240 240
WString WString
4 4
@ -1080,7 +1080,7 @@ WVList
243 243
MItem MItem
32 32
..\..\..\..\..\lib\cmn\tio_get.c ../../../../../lib/cmn/tio_get.c
244 244
WString WString
4 4
@ -1098,7 +1098,7 @@ WVList
247 247
MItem MItem
32 32
..\..\..\..\..\lib\cmn\tio_put.c ../../../../../lib/cmn/tio_put.c
248 248
WString WString
4 4
@ -1116,7 +1116,7 @@ WVList
251 251
MItem MItem
28 28
..\..\..\..\..\lib\cmn\xma.c ../../../../../lib/cmn/xma.c
252 252
WString WString
4 4
@ -1152,7 +1152,7 @@ WVList
259 259
MItem MItem
28 28
..\..\..\..\..\lib\cmn\mem.h ../../../../../lib/cmn/mem.h
260 260
WString WString
3 3
@ -1170,7 +1170,7 @@ WVList
263 263
MItem MItem
32 32
..\..\..\..\..\lib\cmn\syscall.h ../../../../../lib/cmn/syscall.h
264 264
WString WString
3 3

View File

@ -68,7 +68,7 @@ o?2??Include directories:
17 17
WString WString
54 54
"$(%watcom)/h;$(%watcom)/h/os2;..\..\..\..\..\include" "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include"
0 0
18 18
MVState MVState

View File

@ -68,7 +68,7 @@ o?2??Include directories:
17 17
WString WString
54 54
"$(%watcom)/h;$(%watcom)/h/os2;..\..\..\..\..\include" "$(%watcom)/h;$(%watcom)/h/os2;../../../../../include"
0 0
18 18
MVState MVState