-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.inf
5175 lines (5114 loc) · 143 KB
/
setup.inf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[Application]
DstDir=
IsFortranInstall=0
AppName=Open Watcom C/C++
InstallerName=Setup
DefPMGroup=wcpp32.grp, Open Watcom C/C++, %DstDir%\watcom.ico
winsys=%winsystemdir%
CDDir=%SrcDir2%
OWDir=%MinimalInstall?CDDir:DstDir%
HDir=%helpfiles?OWDir:CDDir%
DoCreateIcons=1
DoCreateHelpIcons=1
DoModifyAuto=1
DoCopyFiles=1
DoFileAssociations=1
ToolHelp=%CDDir%\binw\toolhelp.dll
GenerateBatchFile=1
BatchFileName=%DstDir%/owsetenv
BatchFileCaption=Open Watcom Build Environment
dialogorder=License,DstDir,GetDiskSizesHere,NewInstall,Maintain,Options,Final,MaintainFinal,UnInstallFinal
DisketteSize=1453568
[Targets]
DstDir
[Dirs]
.,1,-1
h,1,1
h/sys,1,2
lh,1,1
lh/sys,1,4
lh/arpa,1,4
lh/netinet,1,4
lh/arch,1,4
lh/arch/i386,1,8
lh/arch/i386/sys,1,9
binw,1,1
binp,1,1
binnt,1,1
binl,1,1
binb,1,1
binp/dll,1,12
eddat,1,1
src,1,1
bin,1,1
nlm,1,1
rdos,1,1
src/editdll,1,18
lib386,1,1
lib386/dos,1,23
lib386/netware,1,23
lib386/os2,1,23
lib386/win,1,23
lib386/nt,1,23
lib386/linux,1,23
lib386/rdos,1,23
lib286,1,1
lib286/dos,1,31
lib286/os2,1,31
lib286/win,1,31
samples,1,1
samples/ide,1,35
samples/ide/os2,1,36
samples/ide/win,1,36
samples/ide/win32,1,36
samples/ide/nt,1,36
samples/ide/win386,1,36
binnt/help,1,13
binp/help,1,12
docs,1,1
samples/clibexam,1,35
samples/clibexam/kanji,1,45
samples/cplbexam,1,35
samples/cplbexam/complex,1,47
samples/cplbexam/complex/friend,1,48
samples/cplbexam/complex/pubfun,1,48
samples/cplbexam/complex/relfun,1,48
samples/cplbexam/complex/relop,1,48
samples/cplbexam/contain,1,47
samples/cplbexam/fstream,1,47
samples/cplbexam/fstream/fstream,1,54
samples/cplbexam/fstream/ifstream,1,54
samples/cplbexam/fstream/ofstream,1,54
samples/cplbexam/ios,1,47
samples/cplbexam/iostream,1,47
samples/cplbexam/iostream/iostream,1,59
samples/cplbexam/iostream/istream,1,59
samples/cplbexam/iostream/ostream,1,59
samples/cplbexam/string,1,47
samples/cplbexam/string/friend,1,63
samples/cplbexam/string/pubfun,1,63
samples/cplbexam/strstrea,1,47
samples/cplbexam/strstrea/istrstre,1,66
samples/cplbexam/strstrea/ostrstre,1,66
samples/cplbexam/strstrea/strstre,1,66
samples/cppexamp,1,35
samples/cppexamp/excarea,1,70
samples/cppexamp/membfun,1,70
samples/cppexamp/rtti,1,70
samples/dll,1,35
samples/goodies,1,35
samples/win,1,35
samples/win/alarm,1,76
samples/win/alarm/win16,1,77
samples/win/alarm/win32,1,77
samples/win/alarm/win386,1,77
samples/win/datactl,1,76
samples/win/datactl/win16,1,81
samples/win/datactl/win32,1,81
samples/win/datactl/win386,1,81
samples/win/edit,1,76
samples/win/edit/win16,1,85
samples/win/edit/win32,1,85
samples/win/edit/win386,1,85
samples/win/generic,1,76
samples/win/generic/win16,1,89
samples/win/generic/win32,1,89
samples/win/generic/win386,1,89
samples/win/helpex,1,76
samples/win/helpex/win16,1,93
samples/win/helpex/win32,1,93
samples/win/helpex/win386,1,93
samples/win/iconview,1,76
samples/win/iconview/win16,1,97
samples/win/iconview/win32,1,97
samples/win/iconview/win386,1,97
samples/win/life,1,76
samples/win/life/win16,1,101
samples/win/life/win32,1,101
samples/win/life/win386,1,101
samples/win/shootgal,1,76
samples/win/shootgal/win16,1,105
samples/win/shootgal/win32,1,105
samples/win/shootgal/win386,1,105
samples/win/watzee,1,76
samples/win/watzee/win16,1,109
samples/win/watzee/win32,1,109
samples/win/watzee/win386,1,109
src/startup,1,18
src/startup/386,1,113
src/startup/dos,1,113
src/startup/os2,1,113
src/startup/win,1,113
samples/os2,1,35
samples/os2/dll,1,118
samples/os2/som,1,118
samples/os2/som/animals,1,120
samples/os2/som/classes,1,120
samples/os2/som/helloc,1,120
samples/os2/som/wps,1,120
samples/os2/som/hellocpp,1,120
samples/os2/pdd,1,118
samples/directx,1,35
samples/directx/c,1,127
samples/directx/c/d3d,1,128
samples/directx/c/dinput,1,128
samples/directx/c/dshow,1,128
samples/directx/c/dsound,1,128
samples/directx/cpp,1,127
samples/directx/cpp/d3d,1,133
samples/directx/cpp/dinput,1,133
samples/directx/cpp/dshow,1,133
samples/directx/cpp/dsound,1,133
src/cpplib,1,18
src/cpplib/contain,1,138
h/os2,1,2
h/os2/arpa,1,140
h/os2/GL,1,140
h/os2/machine,1,140
h/os2/net,1,140
h/os2/netinet,1,140
h/os2/protocol,1,140
h/os2/sys,1,140
h/os21x,1,2
h/win,1,2
h/nt,1,2
h/nt/ddk,1,150
h/nt/directx,1,150
h/nt/gl,1,150
lib386/nt/ddk,1,28
lib386/nt/directx,1,28
wipfc,1,1
[Files]
pck00000,1n,\
wsample.h!3!!!s,\
wdefwin.h!4!!!s,\
varargs.h!4!!!s,\
utime.h!4!!!s,\
unistd.h!3!!!s,\
tchar.h!1o!!!s,\
strings.h!4!!!s,\
share.h!3!!!s,\
search.h!3!!!s,\
process.h!h!!!s,\
pgchart.h!j!!!s,\
mmintrin.h!15!!!s,\
memory.h!2!!!s,\
mem.h!3!!!s,\
mbstring.h!v!!!s,\
mbctype.h!c!!!s,\
malloc.h!h!!!s,\
libgen.h!2!!!s,\
jtime.h!2!!!s,\
jstring.h!g!!!s,\
jctype.h!6!!!s,\
io.h!i!!!s,\
i86.h!f!!!s,\
graph.h!12!!!s,\
fnmatch.h!4!!!s,\
fcntl.h!6!!!s,\
excpt.h!5!!!s,\
env.h!4!!!s,\
dosfunc.h!4!!!s,\
dos.h!j!!!s,\
direct.h!d!!!s,\
crtdbg.h!c!!!s,\
conio.h!6!!!s,\
bios.h!a!!!s,\
alloca.h!7!!!s,\
_comdef.h!9!!!s,\
wctype.h!7!!!s,\
wchar.h!v!!!s,\
time.h!e!!!s,\
string.h!x!!!s,\
stdlib.h!1b!!!s,\
stdio.h!19!!!s,\
stdint.h!g!!!s,\
stddef.h!7!!!s,\
stdbool.h!3!!!s,\
stdarg.h!a!!!s,\
signal.h!4!!!s,\
setjmp.h!3!!!s,\
math.h!g!!!s,\
locale.h!6!!!s,\
limits.h!a!!!s,\
iso646.h!2!!!s,\
inttypes.h!f!!!s,\
float.h!i!!!s,\
fenv.h!7!!!s,\
errno.h!7!!!s,\
ctype.h!9!!!s,\
complex.h!s!!!s,\
assert.h!5!!!s,\
2,-1,1,.,dostarg wintarg os2targ wnttarg nlmtarg rdostarg | | | | |
pck00001,5,\
utime.h!2!!!s,\
types.h!7!!!s,\
timeb.h!5!!!s,\
stat.h!g!!!s,\
locking.h!3!!!s,\
3,-1,1,.,dostarg wintarg os2targ wnttarg nlmtarg rdostarg | | | | |
pck00002,1,_lfndos.h!3!!!s,3,-1,1,.,dostarg
pck00003,2t,\
typeinfo.h!3!!!s,\
stdexcep.h!3!!!s,\
exceptio.h!3!!!s,\
except.h!4!!!s,\
vector!1i!!!s,\
valarray!2!!!s,\
utility!6!!!s,\
unordere!3!!!s,\
type_tra!l!!!s,\
typeinfo!4!!!s,\
strstrea!c!!!s,\
string!2n!!!s,\
streambu!h!!!s,\
stdexcep!7!!!s,\
stack!6!!!s,\
sstream!2!!!s,\
slist!27!!!s,\
set!b!!!s,\
random!s!!!s,\
queue!2!!!s,\
ostream!e!!!s,\
numeric!a!!!s,\
new!6!!!s,\
memory!1f!!!s,\
map!j!!!s,\
locale!2!!!s,\
list!1m!!!s,\
limits!1g!!!s,\
iterator!p!!!s,\
istream!h!!!s,\
iostream!4!!!s,\
iosfwd!3!!!s,\
ios!m!!!s,\
iomanip!c!!!s,\
function!11!!!s,\
fstream!e!!!s,\
exceptio!8!!!s,\
deque!2h!!!s,\
cwctype!6!!!s,\
cwchar!i!!!s,\
ctime!b!!!s,\
cstring!r!!!s,\
cstdlib!15!!!s,\
cstdio!x!!!s,\
cstdint!f!!!s,\
cstddef!5!!!s,\
cstdarg!a!!!s,\
csignal!4!!!s,\
csetjmp!3!!!s,\
complex!p!!!s,\
cmath!n!!!s,\
clocale!5!!!s,\
climits!a!!!s,\
ciso646!2!!!s,\
cfloat!i!!!s,\
cerrno!7!!!s,\
cctype!6!!!s,\
cassert!5!!!s,\
bitset!p!!!s,\
algorith!3!!!s,\
wcvector.h!m!!!s,\
wcvbase.h!1j!!!s,\
wcstack.h!5!!!s,\
wcskipit.h!f!!!s,\
wcsibase.h!7!!!s,\
wcskip.h!z!!!s,\
wcsbase.h!10!!!s,\
wcqueue.h!5!!!s,\
wclistit.h!m!!!s,\
wclist.h!h!!!s,\
wclibase.h!j!!!s,\
wclcom.h!5!!!s,\
wclbase.h!19!!!s,\
wchiter.h!i!!!s,\
wchbase.h!b!!!s,\
wchash.h!1o!!!s,\
wcexcept.h!f!!!s,\
wcdefs.h!3!!!s,\
strstrea.h!3!!!s,\
string.hpp!n!!!s,\
streambu.h!3!!!s,\
stdiobuf.h!4!!!s,\
sstream.h!2!!!s,\
ostream.h!3!!!s,\
new.h!2!!!s,\
istream.h!3!!!s,\
iostream.h!3!!!s,\
iosfwd.h!3!!!s,\
ios.h!3!!!s,\
iomanip.h!3!!!s,\
generic.h!4!!!s,\
fstream.h!3!!!s,\
eh.h!2!!!s,\
_strdef.h!15!!!s,\
_rbtree.h!41!!!s,\
_meta.h!3!!!s,\
_ialias.h!3!!!s,\
_hash.h!3!!!s,\
_algsort.h!t!!!s,\
_algnmod.h!k!!!s,\
_algmut.h!u!!!s,\
2,-1,1,.,dostarg wintarg os2targ wnttarg nlmtarg rdostarg | | | | | cplusplus
pck00004,1g,\
varargs.h!4!!!s,\
utime.h!4!!!s,\
unistd.h!k!!!s,\
termios.h!b!!!s,\
tchar.h!1m!!!s,\
strings.h!4!!!s,\
share.h!3!!!s,\
search.h!3!!!s,\
process.h!e!!!s,\
netdb.h!6!!!s,\
mmintrin.h!14!!!s,\
mem.h!3!!!s,\
mbstring.h!u!!!s,\
mbctype.h!c!!!s,\
malloc.h!c!!!s,\
libgen.h!2!!!s,\
jtime.h!2!!!s,\
jstring.h!f!!!s,\
jctype.h!6!!!s,\
i86.h!f!!!s,\
fnmatch.h!3!!!s,\
fcntl.h!5!!!s,\
excpt.h!5!!!s,\
env.h!4!!!s,\
dirent.h!4!!!s,\
crtdbg.h!c!!!s,\
conio.h!6!!!s,\
alloca.h!6!!!s,\
_comdef.h!7!!!s,\
wctype.h!7!!!s,\
wchar.h!u!!!s,\
time.h!i!!!s,\
string.h!w!!!s,\
stdlib.h!11!!!s,\
stdio.h!17!!!s,\
stdint.h!g!!!s,\
stddef.h!6!!!s,\
stdbool.h!3!!!s,\
stdarg.h!a!!!s,\
signal.h!6!!!s,\
setjmp.h!4!!!s,\
math.h!f!!!s,\
locale.h!5!!!s,\
limits.h!g!!!s,\
iso646.h!2!!!s,\
inttypes.h!e!!!s,\
float.h!i!!!s,\
fenv.h!7!!!s,\
errno.h!3!!!s,\
ctype.h!9!!!s,\
complex.h!r!!!s,\
assert.h!5!!!s,\
4,-1,1,.,lnxtarg
pck00005,2s,\
typeinfo.h!3!!!s,\
stdexcep.h!3!!!s,\
exceptio.h!3!!!s,\
except.h!4!!!s,\
vector!1g!!!s,\
valarray!2!!!s,\
utility!6!!!s,\
unordere!3!!!s,\
type_tra!k!!!s,\
typeinfo!4!!!s,\
strstrea!b!!!s,\
string!2k!!!s,\
streambu!g!!!s,\
stdexcep!6!!!s,\
stack!6!!!s,\
sstream!2!!!s,\
slist!24!!!s,\
set!b!!!s,\
random!r!!!s,\
queue!2!!!s,\
ostream!d!!!s,\
numeric!a!!!s,\
new!6!!!s,\
memory!1e!!!s,\
map!i!!!s,\
locale!2!!!s,\
list!1k!!!s,\
limits!1f!!!s,\
iterator!o!!!s,\
istream!g!!!s,\
iostream!4!!!s,\
iosfwd!3!!!s,\
ios!l!!!s,\
iomanip!c!!!s,\
function!10!!!s,\
fstream!d!!!s,\
exceptio!7!!!s,\
deque!2f!!!s,\
cwctype!6!!!s,\
cwchar!i!!!s,\
ctime!f!!!s,\
cstring!r!!!s,\
cstdlib!v!!!s,\
cstdio!v!!!s,\
cstdint!f!!!s,\
cstddef!4!!!s,\
cstdarg!a!!!s,\
csignal!6!!!s,\
csetjmp!4!!!s,\
complex!o!!!s,\
cmath!m!!!s,\
clocale!5!!!s,\
climits!g!!!s,\
ciso646!2!!!s,\
cfloat!i!!!s,\
cerrno!3!!!s,\
cctype!6!!!s,\
cassert!5!!!s,\
bitset!o!!!s,\
algorith!3!!!s,\
wcvector.h!l!!!s,\
wcvbase.h!1h!!!s,\
wcstack.h!4!!!s,\
wcskipit.h!e!!!s,\
wcsibase.h!7!!!s,\
wcskip.h!y!!!s,\
wcsbase.h!z!!!s,\
wcqueue.h!5!!!s,\
wclistit.h!l!!!s,\
wclist.h!h!!!s,\
wclibase.h!j!!!s,\
wclcom.h!5!!!s,\
wclbase.h!17!!!s,\
wchiter.h!i!!!s,\
wchbase.h!a!!!s,\
wchash.h!1m!!!s,\
wcexcept.h!f!!!s,\
wcdefs.h!3!!!s,\
strstrea.h!3!!!s,\
string.hpp!m!!!s,\
streambu.h!3!!!s,\
stdiobuf.h!4!!!s,\
sstream.h!2!!!s,\
ostream.h!3!!!s,\
new.h!2!!!s,\
istream.h!3!!!s,\
iostream.h!3!!!s,\
iosfwd.h!3!!!s,\
ios.h!3!!!s,\
iomanip.h!3!!!s,\
generic.h!4!!!s,\
fstream.h!3!!!s,\
_strdef.h!13!!!s,\
_rbtree.h!3x!!!s,\
_meta.h!3!!!s,\
_ialias.h!3!!!s,\
_hash.h!3!!!s,\
_algsort.h!s!!!s,\
_algnmod.h!j!!!s,\
_algmut.h!t!!!s,\
4,-1,1,.,lnxtarg cplusplus
pck00006,e,\
wait.h!7!!!s,\
utsname.h!4!!!s,\
un.h!2!!!s,\
types.h!7!!!s,\
times.h!4!!!s,\
timeb.h!4!!!s,\
time.h!9!!!s,\
stat.h!d!!!s,\
socket.h!b!!!s,\
ptrace.h!6!!!s,\
mount.h!4!!!s,\
mman.h!8!!!s,\
locking.h!3!!!s,\
ioctl.h!i!!!s,\
5,-1,1,.,lnxtarg
pck00007,1,inet.h!3!!!s,6,-1,1,.,lnxtarg
pck00008,2,\
tcp.h!3!!!s,\
in.h!8!!!s,\
7,-1,1,.,lnxtarg
pck00009,4,\
sigposix.h!2!!!s,\
signal.h!5!!!s,\
fcntl.h!6!!!s,\
err_no.h!g!!!s,\
9,-1,1,.,lnxtarg
pck00010,4,\
types.h!3!!!s,\
stat.h!4!!!s,\
socket.h!2!!!s,\
ioctl.h!c!!!s,\
a,-1,1,.,lnxtarg
pck00011,1,wrc.exe!gq!!!e,b,-1,1,.,wnttarg wintarg | os2targ | winhost doshost | &
pck00012,1,wrc.exe!dm!!!e,c,-1,1,.,wnttarg wintarg | os2targ | os2host
pck00013,1,wrc.exe!f0!!!e,d,-1,1,.,wnttarg wintarg | os2targ | wnthost
pck00014,1,wrc!fy!!!e,e,-1,1,.,wnttarg wintarg | os2targ | lnxhost
pck00015,1,mkcdpg.exe!1v!!!e,d,-1,1,.,wnthost
pck00016,1,wddespy.exe!5z!!!e,b,-1,1,.,winhost
pck00017,1,wddespy.exe!78!!!e,d,-1,1,.,wnthost
pck00018,3,\
wspyhk.dll!3!!!d,\
wspy.exe!67!!!e,\
wheapwlk.exe!7e!!!e,\
b,-1,1,.,winhost
pck00019,2,\
ntspyhk.dll!1i!!!d,\
wspy.exe!9e!!!e,\
d,-1,1,.,wnthost
pck00020,1,drwatcom.exe!7o!!!e,b,-1,1,.,winhost
pck00021,2,\
_drwin95.exe!a3!!!e,\
drwatcom.exe!as!!!e,\
d,-1,1,.,wnthost
pck00022,1,wzoom.exe!1s!!!e,b,-1,1,.,winhost
pck00023,1,wzoom.exe!2v!!!e,d,-1,1,.,wnthost
pck00024,1,wimgedit.exe!dz!!!e,b,-1,1,.,winhost
pck00025,1,wimgedit.exe!fa!!!e,d,-1,1,.,wnthost
pck00026,1,wr.dll!bz!!!d,b,-1,1,.,winhost
pck00027,1,wr.dll!bg!!!d,d,-1,1,.,wnthost
pck00028,1,wre.exe!b1!!!e,b,-1,1,.,winhost
pck00029,1,wre.exe!bc!!!e,d,-1,1,.,wnthost
pck00030,1,wde.exe!nc!!!e,b,-1,1,.,winhost
pck00031,1,wde.exe!mw!!!e,d,-1,1,.,wnthost
pck00032,1,wacc.dll!87!!!d,b,-1,1,.,winhost
pck00033,1,wacc.dll!8x!!!d,d,-1,1,.,wnthost
pck00034,1,wmenu.dll!8x!!!d,b,-1,1,.,winhost
pck00035,1,wmenu.dll!9h!!!d,d,-1,1,.,wnthost
pck00036,1,wstring.dll!83!!!d,b,-1,1,.,winhost
pck00037,1,wstring.dll!8q!!!d,d,-1,1,.,wnthost
pck00038,1,fmedit.dll!2h!!!d,b,-1,1,.,winhost
pck00039,1,fmedit.dll!3j!!!d,d,-1,1,.,wnthost
pck00040,7,\
950.uni!3k!!!s,\
949.uni!3k!!!s,\
936.uni!3k!!!s,\
1252.uni!2!!!s,\
1251.uni!2!!!s,\
1250.uni!2!!!s,\
kanji.uni!1q!!!s,\
b,f,1,.,
pck00041,7,\
950.uni!3k!!!s,\
949.uni!3k!!!s,\
936.uni!3k!!!s,\
1252.uni!2!!!s,\
1251.uni!2!!!s,\
1250.uni!2!!!s,\
kanji.uni!1q!!!s,\
e,-1,1,.,wnttarg wintarg | os2targ | lnxhost
pck00042,2,\
wasmr.exe!e9!!!e,\
wasm.exe!gc!!!e,\
b,-1,1,.,doshost winhost |
pck00043,1,wasm.exe!do!!!e,c,-1,1,.,os2host
pck00044,1,wasm.exe!ev!!!e,d,-1,1,.,wnthost
pck00045,1,wasm!fc!!!e,e,-1,1,.,lnxhost
pck00046,2,\
wasppc.exe!9t!!!e,\
wasaxp.exe!9h!!!e,\
b,-1,1,.,doshost
pck00047,2,\
wasppc.exe!6n!!!e,\
wasaxp.exe!68!!!e,\
c,-1,1,.,os2host
pck00048,2,\
wasppc!8b!!!e,\
wasaxp!7t!!!e,\
e,-1,1,.,lnxhost
pck00049,1,rcsdll.dll!1a!!!d,b,-1,1,.,doshost winhost |
pck00050,1,rcsdll.dll!1t!!!d,g,-1,1,.,os2host
pck00051,1,rcsdll.dll!2c!!!d,d,-1,1,.,wnthost
pck00052,8,\
pvcs_ci.bat!1!!!s,\
pvcs_co.bat!1!!!s,\
p4_ci.bat!1!!!s,\
p4_co.bat!1!!!s,\
mks_ci.bat!1!!!s,\
mks_co.bat!1!!!s,\
gen_ci.bat!1!!!s,\
gen_co.bat!2!!!s,\
b,-1,1,.,doshost winhost wnthost alphahost | | |
pck00053,8,\
pvcs_ci.cmd!1!!!s,\
pvcs_co.cmd!1!!!s,\
p4_ci.cmd!1!!!s,\
p4_co.cmd!1!!!s,\
mks_ci.cmd!1!!!s,\
mks_co.cmd!1!!!s,\
gen_ci.cmd!1!!!s,\
gen_co.cmd!2!!!s,\
c,-1,1,.,os2host
pck00054,2,\
viw.exe!oo!!!e,\
vi.exe!hl!!!e,\
d,-1,1,.,wnthost
pck00055,1,vi.exe!k7!!!e,b,-1,1,.,doshost winhost |
pck00056,1,viw.exe!oz!!!e,b,-1,1,.,winhost
pck00057,1,vi.exe!g3!!!e,c,-1,1,.,os2host
pck00058,1,vi!lx!!!e,e,-1,1,.,lnxhost
pck00059,1,ctags.exe!1s!!!e,c,-1,1,.,os2host
pck00060,1,ctags.exe!2z!!!e,b,-1,1,.,doshost winhost |
pck00061,1,ctags.exe!2o!!!e,d,-1,1,.,wnthost
pck00062,1,ctags!24!!!e,e,-1,1,.,lnxhost
pck00063,1,edbind.exe!1v!!!e,c,-1,1,.,os2host
pck00064,1,edbind.exe!1w!!!e,b,-1,1,.,doshost winhost |
pck00065,1,edbind.exe!2q!!!e,d,-1,1,.,wnthost
pck00066,1,edbind!1r!!!e,e,-1,1,.,lnxhost
pck00067,y,\
ed.cfg!o!!!s,\
writewin.vi!1!!!s,\
writeall.vi!1!!!s,\
user.vi!1!!!s,\
rdmewin.vi!1!!!s,\
ddecb.vi!5!!!s,\
menuwin.vi!2!!!s,\
wqh2.vi!1!!!s,\
wqh.vi!1!!!s,\
mlsel.vi!1!!!s,\
rdme.vi!4!!!s,\
menu.vi!1!!!s,\
dde.vi!1!!!s,\
untitled.vi!1!!!s,\
mcsel.vi!1!!!s,\
mlselw.vi!1!!!s,\
mcselw.vi!2!!!s,\
ideact.vi!1!!!s,\
ddesinit.vi!1!!!s,\
tryme.vi!3!!!s,\
qh2.vi!1!!!s,\
qh.vi!3!!!s,\
lnum.vi!1!!!s,\
fin.vi!1!!!s,\
toggle.vi!1!!!s,\
proc.vi!1!!!s,\
chkout.vi!1!!!s,\
unlock.vi!1!!!s,\
cmdme.vi!3!!!s,\
forceout.vi!1!!!s,\
wrme.vi!1!!!s,\
err.vi!1!!!s,\
rcs.vi!1!!!s,\
qall.vi!1!!!s,\
h,-1,1,.,
pck00068,1,weditor.ini!v!!!s,h,-1,1,.,winhost wnthost alphahost | |
pck00069,z,\
declspec.dat!1!!!s,\
pragma.dat!1!!!s,\
rc.dat!2!!!s,\
wml.dat!1!!!s,\
sql.dat!i!!!s,\
perl.dat!4!!!s,\
mif.dat!1!!!s,\
java.dat!1!!!s,\
html.dat!2!!!s,\
gml.dat!2!!!s,\
fortran.dat!2!!!s,\
dbtest.dat!5!!!s,\
cpp.dat!2!!!s,\
c.dat!2!!!s,\
bat.dat!2!!!s,\
basic.dat!f!!!s,\
awk.dat!1!!!s,\
mfchelp.vi!1!!!s,\
clibhelp.vi!4!!!s,\
bindvi.cmd!1!!!s,\
bindvi.bat!1!!!s,\
regexp.hlp!b!!!s,\
script.hlp!p!!!s,\
key.hlp!r!!!s,\
set.hlp!k!!!s,\
cmd.hlp!17!!!s,\
start.hlp!6!!!s,\
skel.dat!1!!!s,\
edbind.dat!1!!!s,\
winkeys.dat!4!!!s,\
errmsg.dat!7!!!s,\
winbind.dat!1!!!s,\
keys.dat!4!!!s,\
error.dat!8!!!s,\
debug.cfg!i!!!s,\
h,-1,1,.,
pck00070,1,wdis.exe!id!!!e,b,-1,1,.,doshost winhost |
pck00071,1,wdis.exe!fm!!!e,c,-1,1,.,os2host
pck00072,1,wdis.exe!gv!!!e,d,-1,1,.,wnthost
pck00073,1,wdis!hx!!!e,e,-1,1,.,lnxhost
pck00074,2,\
wstubq.exe!v!!!e,\
wstub.exe!s!!!e,\
b,f,1,.,dostarg
pck00075,1,wstub.c!7!!!s,i,-1,1,.,samples
pck00076,1,bpatch.exe!41!!!e,b,f,1,.,
pck00077,1,whelp.exe!63!!!e,b,j,1,.,doshost
pck00078,1,whelp!7g!!!e,e,-1,1,.,lnxhost
pck00079,1,wlib.exe!ae!!!e,b,-1,1,.,doshost winhost |
pck00080,1,wlib.exe!14!!!e,c,-1,1,.,os2host
pck00081,1,wlibd.dll!96!!!d,g,-1,1,.,os2host
pck00082,2,\
wlibd.dll!9c!!!d,\
wlib.exe!1u!!!e,\
d,-1,1,.,wnthost
pck00083,1,wlib!a8!!!e,e,-1,1,.,lnxhost
pck00084,2,\
wccd386.dll!14f!!!d,\
wcc386.exe!1w!!!e,\
d,-1,1,.,wnthost
pck00085,2,\
wccd.dll!142!!!d,\
wcc.exe!1w!!!e,\
d,-1,1,.,wnthost tools16
pck00086,1,wcc386.exe!12!!!e,c,-1,1,.,os2host
pck00087,1,wccd386.dll!18e!!!d,g,-1,1,.,os2host
pck00088,1,wcc.exe!12!!!e,c,-1,1,.,os2host tools16
pck00089,1,wccd.dll!17y!!!d,g,-1,1,.,os2host tools16
pck00090,1,wcc386.exe!1b9!!!e,b,-1,1,.,doshost winhost |
pck00091,1,wcc.exe!1ar!!!e,b,-1,1,.,doshost winhost | tools16
pck00092,1,wcc386!1b7!!!e,e,-1,1,.,lnxhost
pck00093,1,wcc!1ar!!!e,e,-1,1,.,lnxhost tools16
pck00094,2,\
wppdi86.dll!1ta!!!d,\
wpp.exe!1t!!!e,\
d,-1,1,.,wnthost tools16
pck00095,2,\
wppd386.dll!1ti!!!d,\
wpp386.exe!1t!!!e,\
d,-1,1,.,wnthost
pck00096,1,wpp.exe!z!!!e,c,-1,1,.,os2host tools16
pck00097,1,wppdi86.dll!20b!!!d,g,-1,1,.,os2host tools16
pck00098,1,wpp386.exe!z!!!e,c,-1,1,.,os2host
pck00099,1,wppd386.dll!20k!!!d,g,-1,1,.,os2host
pck00100,1,wpp.exe!227!!!e,b,-1,1,.,doshost winhost | cplusplus tools16
pck00101,1,wpp386.exe!22g!!!e,b,-1,1,.,doshost winhost | cplusplus
pck00102,1,wpp!27w!!!e,e,-1,1,.,lnxhost cplusplus tools16
pck00103,1,wpp386!28a!!!e,e,-1,1,.,lnxhost cplusplus
pck00104,1,wcl.exe!2o!!!e,b,f,1,.,tools16
pck00105,3,\
specs.owc!6!!!s,\
owcc.exe!2z!!!e,\
wcl386.exe!2o!!!e,\
b,f,1,.,
pck00106,1,wcl.exe!3d!!!e,d,-1,1,.,wnthost tools16
pck00107,2,\
owcc.exe!4c!!!e,\
wcl386.exe!3c!!!e,\
d,-1,1,.,wnthost
pck00108,1,wcl.exe!2j!!!e,c,-1,1,.,os2host tools16
pck00109,2,\
owcc.exe!3d!!!e,\
wcl386.exe!2j!!!e,\
c,-1,1,.,os2host
pck00110,1,wcl!2t!!!e,e,-1,1,.,lnxhost tools16
pck00111,3,\
specs.owc!6!!!s,\
owcc!3q!!!e,\
wcl386!2t!!!e,\
e,-1,1,.,lnxhost
pck00112,4,\
std.trp!10!!!s,\
rsi.trp!x!!!s,\
pls.trp!y!!!s,\
cw.trp!x!!!s,\
b,j,1,.,dostarg
pck00113,1,net.trp!7!!!s,b,j,1,.,doshost
pck00114,1,nmp.trp!9!!!s,b,j,1,.,doshost os2host |
pck00115,3,\
ser.trp!i!!!s,\
par.trp!g!!!s,\
nov.trp!j!!!s,\
b,j,1,.,doshost dostarg |
pck00116,1,win.trp!6!!!s,b,j,1,.,doshost dostarg wintarg | |
pck00117,1,netserv.exe!10!!!e,b,j,1,.,dostarg doshost winhost | |
pck00118,1,nmpserv.exe!11!!!e,b,j,1,.,doshost dostarg os2host | |
pck00119,4,\
tcpserv.exe!7c!!!e,\
serserv.exe!18!!!e,\
parserv.exe!15!!!e,\
novserv.exe!15!!!e,\
b,j,1,.,dostarg
pck00120,1,vdmserv.exe!10!!!e,b,j,1,.,dostarg os2host wnthost | |
pck00121,4,\
rsihelp.exp!1q!!!e,\
cwhelp.cfg!2!!!s,\
cwhelp.exe!10!!!e,\
winserv.exe!z!!!e,\
b,j,1,.,dostarg
pck00122,1,std.dll!1f!!!d,b,-1,1,.,wintarg
pck00123,1,net.dll!6!!!d,b,-1,1,.,winhost
pck00124,1,nmp.dll!8!!!d,b,-1,1,.,winhost os2host &
pck00125,3,\
tcp.dll!7!!!d,\
par.dll!c!!!d,\
nov.dll!c!!!d,\
b,-1,1,.,winhost
pck00126,5,\
tcpservw.exe!t!!!e,\
parservw.exe!10!!!e,\
netservw.exe!s!!!e,\
novservw.exe!z!!!e,\
wint32.dll!4!!!d,\
b,-1,1,.,wintarg
pck00127,2,\
nmpservw.exe!t!!!e,\
vdmservw.exe!t!!!e,\
b,-1,1,.,wintarg os2host &
pck00128,5,\
tcp.d32!7!!!d,\
ser.d32!h!!!d,\
par.d32!p!!!d,\
nmp.d32!8!!!d,\
net.d32!7!!!d,\
c,-1,1,.,os2host os2targ |
pck00129,1,vdm.d32!9!!!d,c,-1,1,.,os2host dostarg &
pck00130,1,std.d32!1x!!!d,c,-1,1,.,os2targ
pck00131,2,\
wdsplice.dll!o!!!d,\
wdpmhook.dll!2!!!d,\
g,-1,1,.,os2targ
pck00132,1,wdio.dll!d!!!d,g,-1,1,.,os2host os2targ |
pck00133,5,\
tcpserv.exe!13!!!e,\
serserv.exe!19!!!e,\
parserv.exe!1d!!!e,\
nmpserv.exe!11!!!e,\
netserv.exe!10!!!e,\
c,-1,1,.,os2targ
pck00134,1,wdpmhelp.exe!c!!!e,c,-1,1,.,os2host os2targ |
pck00135,1,nmpbind.exe!l!!!e,c,-1,1,.,winhost IsOS2DosBox & os2host | MinimalInstall |
pck00136,1,std.trp!1j!!!e,e,-1,1,.,lnxtarg
pck00137,2,\
par.trp!t!!!e,\
tcp.trp!c!!!e,\
e,-1,1,.,lnxtarg lnxhost |
pck00138,2,\
parserv!2e!!!e,\
tcpserv!25!!!e,\
e,-1,1,.,lnxtarg
pck00139,1,std.dll!3f!!!d,d,-1,1,.,wnttarg
pck00140,3,\
ser.dll!1u!!!d,\
par.dll!h!!!d,\
nov.dll!c!!!d,\
d,-1,1,.,wnthost wnttarg |
pck00141,1,tcp.dll!c!!!d,d,-1,1,.,wnthost wnntarg |
pck00142,1,vdm.dll!c!!!d,d,-1,1,.,wnthost
pck00143,4,\
tcpserv.exe!23!!!e,\
serserv.exe!22!!!e,\
parserv.exe!2a!!!e,\
novserv.exe!25!!!e,\
d,-1,1,.,wnttarg
pck00144,2,\
dbgport.sys!j!!!e,\
dbginst.exe!1t!!!e,\
d,-1,1,.,wnthost wnttarg |
pck00145,6,\
novserv4.nlm!30!!!e,\
novserv3.nlm!2y!!!e,\
serserv4.nlm!2v!!!e,\
serserv3.nlm!2t!!!e,\
parserv4.nlm!2s!!!e,\
parserv3.nlm!2r!!!e,\
k,-1,1,.,nlmtarg
pck00146,1,std.dll!1r!!!d,l,-1,1,.,rdoshost rdostarg |
pck00147,1,tcpserv.exe!13!!!e,l,-1,1,.,rdostarg
pck00148,5,\
watcom.d32!33!!!d,\
mapsym.d32!d!!!d,\
export.d32!o!!!d,\
dwarf.d32!5j!!!d,\
codeview.d32!2p!!!d,\
c,-1,1,.,os2host
pck00149,5,\
watcom.dll!3n!!!d,\
mapsym.dll!n!!!d,\
export.dll!11!!!d,\
dwarf.dll!6t!!!d,\
codeview.dll!3f!!!d,\
b,-1,1,.,winhost wintarg |
pck00150,5,\
watcom.dip!2y!!!s,\
mapsym.dip!c!!!s,\
export.dip!n!!!s,\
dwarf.dip!5b!!!s,\
codeview.dip!2m!!!s,\
b,-1,1,.,winhost doshost | dostarg |
pck00151,5,\
watcom.dll!34!!!d,\
mapsym.dll!n!!!d,\
export.dll!r!!!d,\
dwarf.dll!59!!!d,\
codeview.dll!2o!!!d,\
d,-1,1,.,wnthost wnttarg |
pck00152,5,\
watcom.dip!2x!!!s,\
mapsym.dip!c!!!s,\
export.dip!m!!!s,\
dwarf.dip!5a!!!s,\
codeview.dip!2m!!!s,\
e,-1,1,.,lnxhost
pck00153,3,\
watcom.dll!34!!!d,\
mapsym.dll!n!!!d,\
dwarf.dll!5k!!!d,\
l,-1,1,.,rdoshost
pck00154,1,madx86.mad!6j!!!s,b,-1,1,.,doshost dostarg |
pck00155,4,\
madmips.dll!1r!!!d,\
madppc.dll!35!!!d,\
madaxp.dll!1s!!!d,\
madx86.dll!7e!!!d,\
b,-1,1,.,winhost wintarg |
pck00156,4,\
madmips.d32!1f!!!d,\
madppc.d32!2t!!!d,\
madaxp.d32!1h!!!d,\
madx86.d32!79!!!d,\
c,-1,1,.,os2host os2targ |
pck00157,4,\
madmips.mad!1b!!!s,\
madppc.mad!2n!!!s,\
madaxp.mad!1c!!!s,\
madx86.mad!6i!!!s,\
e,-1,1,.,lnxhost lnxtarg |
pck00158,4,\
madmips.dll!1e!!!d,\
madppc.dll!2q!!!d,\
madaxp.dll!1e!!!d,\
madx86.dll!6c!!!d,\
d,-1,1,.,wnthost wnttarg |
pck00159,1,madx86.dll!6c!!!d,l,-1,1,.,rdoshost rdostarg |
pck00160,1,wd.exe!10p!!!e,b,j,1,.,doshost
pck00161,2,\
wdw.exe!1de!!!e,\
wdc.exe!11d!!!e,\
b,-1,1,.,winhost
pck00162,2,\
wdw.exe!16h!!!e,\
wd.exe!sp!!!e,\
c,-1,1,.,os2host
pck00163,2,\
wdw.exe!1a2!!!e,\
wd.exe!uh!!!e,\
d,-1,1,.,wnthost
pck00164,1,wd.exe!tw!!!e,l,j,1,.,rdoshost
pck00165,1,wd!148!!!e,e,-1,1,.,lnxhost
pck00166,u,\
c.prs!7!!!s,\
cpp.prs!7!!!s,\