-
Notifications
You must be signed in to change notification settings - Fork 0
/
PackingList.txt
1383 lines (1382 loc) · 23 KB
/
PackingList.txt
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
; This PackingList.txt file should accompany my PetzoldConvert.exe
; program which installs Gnu makefiles for each of the 145 example
; programs in Charles Petzold's "Programming Windows Fifth Edition".
; More explanation can be found at:
;
; http://www.computersciencelab.com/Petzold.htm
;
; John Kopplin 2/1/2003
Petzold
Chap01\HelloMsg
HelloMsg.c
HelloMsg.mak
HelloMsg.prj
Chap01\HelloMsg\Release
HelloMsg.exe
Chap01\HelloMsg\Debug
HelloMsg.exe
Chap02\ScrnSize
ScrnSize.c
ScrnSize.mak
ScrnSize.prj
Chap02\ScrnSize\Release
ScrnSize.exe
Chap02\ScrnSize\Debug
ScrnSize.exe
Chap03\HelloWin
HelloWin.c
HelloWin.mak
HelloWin.prj
Chap03\HelloWin\Release
HelloWin.exe
Chap03\HelloWin\Debug
HelloWin.exe
Chap04\SysMets1
SysMets.h
SysMets1.c
SysMets1.mak
SysMets1.prj
Chap04\SysMets1\Release
SysMets1.exe
Chap04\SysMets1\Debug
SysMets1.exe
Chap04\SysMets2
SysMets.h
SysMets2.c
SysMets2.mak
SysMets2.prj
Chap04\SysMets2\Release
SysMets2.exe
Chap04\SysMets2\Debug
SysMets2.exe
Chap04\SysMets3
SysMets.h
SysMets3.c
SysMets3.mak
SysMets3.prj
Chap04\SysMets3\Release
SysMets3.exe
Chap04\SysMets3\Debug
SysMets3.exe
Chap05\DevCaps1
DevCaps1.c
DevCaps1.mak
DevCaps1.prj
Chap05\DevCaps1\Release
DevCaps1.exe
Chap05\DevCaps1\Debug
DevCaps1.exe
Chap05\SineWave ; Chap22 also has a SineWave project
SineWave.c
SineWave.mak
SineWave.prj
Chap05\SineWave\Release
SineWave.exe
Chap05\SineWave\Debug
SineWave.exe
Chap05\LineDemo
LineDemo.c
LineDemo.mak
LineDemo.prj
Chap05\LineDemo\Release
LineDemo.exe
Chap05\LineDemo\Debug
LineDemo.exe
Chap05\Bezier
Bezier.c
Bezier.mak
Bezier.prj
Chap05\Bezier\Release
Bezier.exe
Chap05\Bezier\Debug
Bezier.exe
Chap05\AltWind
AltWind.c
AltWind.mak
AltWind.prj
Chap05\AltWind\Release
AltWind.exe
Chap05\AltWind\Debug
AltWind.exe
Chap05\WhatSize
WhatSize.c
WhatSize.mak
WhatSize.prj
Chap05\WhatSize\Release
WhatSize.exe
Chap05\WhatSize\Debug
WhatSize.exe
Chap05\RandRect
RandRect.c
RandRect.mak
RandRect.prj
Chap05\RandRect\Release
RandRect.exe
Chap05\RandRect\Debug
RandRect.exe
Chap05\Clover
Clover.c
Clover.mak
Clover.prj
Chap05\Clover\Release
Clover.exe
Chap05\Clover\Debug
Clover.exe ; 73 files thru Chap05
Chap06\SysMets4
SysMets.h
SysMets4.c
SysMets4.mak
SysMets4.prj
Chap06\SysMets4\Debug
SysMets4.exe
Chap06\SysMets4\Release
SysMets4.exe
Chap06\KeyView1
KeyView1.c
KeyView1.mak
KeyView1.prj
Chap06\KeyView1\Debug
KeyView1.exe
Chap06\KeyView1\Release
KeyView1.exe
Chap06\StokFont
StokFont.c
StokFont.mak
StokFont.prj
Chap06\StokFont\Debug
StokFont.exe
Chap06\StokFont\Release
StokFont.exe
Chap06\KeyView2
KeyView2.c
KeyView2.mak
KeyView2.prj
Chap06\KeyView2\Debug
KeyView2.exe
Chap06\KeyView2\Release
KeyView2.exe
Chap06\Typer
Typer.c
Typer.mak
Typer.prj
Chap06\Typer\Debug
Typer.exe
Chap06\Typer\Release
Typer.exe ; 99 files thru Chap06
Chap07\Connect
Connect.c
Connect.mak
Connect.prj
Chap07\Connect\Debug
Connect.exe
Chap07\Connect\Release
Connect.exe
Chap07\Checker1
Checker1.c
Checker1.mak
Checker1.prj
Chap07\Checker1\Debug
Checker1.exe
Chap07\Checker1\Release
Checker1.exe
Chap07\Checker2
Checker2.c
Checker2.mak
Checker2.prj
Chap07\Checker2\Debug
Checker2.exe
Chap07\Checker2\Release
Checker2.exe
Chap07\Checker3
Checker3.c
Checker3.mak
Checker3.prj
Chap07\Checker3\Debug
Checker3.exe
Chap07\Checker3\Release
Checker3.exe
Chap07\Checker4
Checker4.c
Checker4.mak
Checker4.prj
Chap07\Checker4\Debug
Checker4.exe
Chap07\Checker4\Release
Checker4.exe
Chap07\BlokOut1
BlokOut1.c
BlokOut1.mak
BlokOut1.prj
Chap07\BlokOut1\Debug
BlokOut1.exe
Chap07\BlokOut1\Release
BlokOut1.exe
Chap07\BlokOut2
BlokOut2.c
BlokOut2.mak
BlokOut2.prj
Chap07\BlokOut2\Debug
BlokOut2.exe
Chap07\BlokOut2\Release
BlokOut2.exe
Chap07\SysMets
SysMets.c
SysMets.h
SysMets.mak
SysMets.prj
Chap07\SysMets\Debug
SysMets.exe
Chap07\SysMets\Release
SysMets.exe ; 140 files thru Chap07
Chap08\Beeper1
Beeper1.c
Beeper1.mak
Beeper1.prj
Chap08\Beeper1\Debug
Beeper1.exe
Chap08\Beeper1\Release
Beeper1.exe
Chap08\Beeper2
Beeper2.c
Beeper2.mak
Beeper2.prj
Chap08\Beeper2\Debug
Beeper2.exe
Chap08\Beeper2\Release
Beeper2.exe
Chap08\DigClock
DigClock.c
DigClock.mak
DigClock.prj
Chap08\DigClock\Debug
DigClock.exe
Chap08\DigClock\Release
DigClock.exe
Chap08\Clock
Clock.c
Clock.mak
Clock.prj
Chap08\Clock\Debug
Clock.exe
Chap08\Clock\Release
Clock.exe
Chap08\WhatClr
WhatClr.c
WhatClr.mak
WhatClr.prj
Chap08\WhatClr\Debug
WhatClr.exe
Chap08\WhatClr\Release
WhatClr.exe ; 165 files thru Chap08
Chap09\BtnLook
BtnLook.c
BtnLook.mak
BtnLook.prj
Chap09\BtnLook\Debug
BtnLook.exe
Chap09\BtnLook\Release
BtnLook.exe
Chap09\OwnDraw
OwnDraw.c
OwnDraw.mak
OwnDraw.prj
Chap09\OwnDraw\Debug
OwnDraw.exe
Chap09\OwnDraw\Release
OwnDraw.exe
Chap09\Colors1
Colors1.c
Colors1.mak
Colors1.prj
Chap09\Colors1\Debug
Colors1.exe
Chap09\Colors1\Release
Colors1.exe
Chap09\PopPad1
PopPad1.c
PopPad1.mak
PopPad1.prj
Chap09\PopPad1\Debug
PopPad1.exe
Chap09\PopPad1\Release
PopPad1.exe
Chap09\Environ
Environ.c
Environ.mak
Environ.prj
Chap09\Environ\Debug
Environ.exe
Chap09\Environ\Release
Environ.exe
Chap09\head
head.c
head.mak
head.prj
Chap09\head\Debug
head.exe
Chap09\head\Release
head.exe ; 195 files thru Chap09
Chap10\IconDemo
IconDemo.c
IconDemo.rc
Resource.h
afxres.h
IconDemo.mak
IconDemo.prj
Chap10\IconDemo\Debug
IconDemo.exe
Chap10\IconDemo\Release
IconDemo.exe
Chap10\PoePoem
PoePoem.c
PoePoem.rc
Resource.h
afxres.h
PoePoem.mak
PoePoem.prj
Chap10\PoePoem\Debug
PoePoem.exe
Chap10\PoePoem\Release
PoePoem.exe
Chap10\MenuDemo
MenuDemo.c
MenuDemo.rc
Resource.h
afxres.h
MenuDemo.mak
MenuDemo.prj
Chap10\MenuDemo\Debug
MenuDemo.exe
Chap10\MenuDemo\Release
MenuDemo.exe
Chap10\PopMenu
PopMenu.c
PopMenu.rc
Resource.h
afxres.h
PopMenu.mak
PopMenu.prj
Chap10\PopMenu\Debug
PopMenu.exe
Chap10\PopMenu\Release
PopMenu.exe
Chap10\PoorMenu
PoorMenu.c
PoorMenu.mak
PoorMenu.prj
Chap10\PoorMenu\Debug
PoorMenu.exe
Chap10\PoorMenu\Release
PoorMenu.exe
Chap10\NoPopups
NoPopups.c
NoPopups.rc
Resource.h
afxres.h
NoPopups.mak
NoPopups.prj
Chap10\NoPopups\Debug
NoPopups.exe
Chap10\NoPopups\Release
NoPopups.exe
Chap10\PopPad2
PopPad2.c
PopPad2.rc
Resource.h
afxres.h
PopPad2.mak
PopPad2.prj
Chap10\PopPad2\Debug
PopPad2.exe
Chap10\PopPad2\Release
PopPad2.exe ; 248 files thru Chap10
Chap11\About1
About1.c
About1.rc
Resource.h
afxres.h
About1.mak
About1.prj
Chap11\About1\Debug
About1.exe
Chap11\About1\Release
About1.exe
Chap11\About2
About2.c
About2.rc
Resource.h
afxres.h
About2.mak
About2.prj
Chap11\About2\Debug
About2.exe
Chap11\About2\Release
About2.exe
Chap11\About3
About3.c
About3.rc
Resource.h
afxres.h
About3.mak
About3.prj
Chap11\About3\Debug
About3.exe
Chap11\About3\Release
About3.exe
Chap11\Colors2
Colors2.c
Colors2.rc
Resource.h
afxres.h
Colors2.mak
Colors2.prj
Chap11\Colors2\Debug
Colors2.exe
Chap11\Colors2\Release
Colors2.exe
Chap11\HexCalc
HexCalc.c
HexCalc.rc
HexCalc.dlg
Resource.h
afxres.h
HexCalc.mak
HexCalc.prj
Chap11\HexCalc\Debug
HexCalc.exe
Chap11\HexCalc\Release
HexCalc.exe
Chap11\PopPad3
PopPad.c
PopFile.c
PopFind.c
PopFont.c
PopPrnt0.c
Poppad.rc ; this is Petzold's spelling
Resource.h
afxres.h
PopPad3.mak
PopPad3.prj
Chap11\PopPad3\Debug
PopPad3.exe
Chap11\PopPad3\Release
PopPad3.exe
Chap11\Colors3
Colors3.c
Colors3.mak
Colors3.prj
Chap11\Colors3\Debug
Colors3.exe
Chap11\Colors3\Release
Colors3.exe ; 306 files thru Chap11
Chap12\ClipText
ClipText.c
ClipText.rc
Resource.h
afxres.h
ClipText.mak
ClipText.prj
Chap12\ClipText\Debug
ClipText.exe
Chap12\ClipText\Release
ClipText.exe
Chap12\ClipView
ClipView.c
ClipView.mak
ClipView.prj
Chap12\ClipView\Debug
ClipView.exe
Chap12\ClipView\Release
ClipView.exe ; 319 files thru Chap12
Chap13\DevCaps2
DevCaps2.c
DevCaps2.rc
Resource.h
afxres.h
DevCaps2.mak
DevCaps2.prj
Chap13\DevCaps2\Release
DevCaps2.exe
Chap13\DevCaps2\Debug
DevCaps2.exe
Chap13\FormFeed
FormFeed.c
FormFeed.mak
FormFeed.prj
Chap13\FormFeed\Debug
FormFeed.exe
Chap13\FormFeed\Release
FormFeed.exe
Chap13\Print1
Print1.c
Print.c
GetPrnDC.c
Print1.mak
Print1.prj
Chap13\Print1\Debug
Print1.exe
Chap13\Print1\Release
Print1.exe
Chap13\Print2
Print2.c
Print2.mak
Print2.prj
Chap13\Print2\Debug
Print2.exe
Chap13\Print2\Release
Print2.exe
Chap13\Print3
Print3.c
Print.rc
Resource.h
afxres.h
Print3.mak
Print3.prj
Chap13\Print3\Debug
Print3.exe
Chap13\Print3\Release
Print3.exe
Chap13\PopPad
PopPad.c
PopFile.c
PopFind.c
PopFont.c
PopPrnt.c
Poppad.rc ; this is Petzold's spelling
Resource.h
afxres.h
PopPad.mak
PopPad.prj
Chap13\PopPad\Debug
PopPad.exe
Chap13\PopPad\Release
PopPad.exe ; 364 files thru Chap13
Chap14\BitBlt
BitBlt.c
BitBlt.mak
BitBlt.prj
Chap14\BitBlt\Debug
BitBlt.exe
Chap14\BitBlt\Release
BitBlt.exe
Chap14\Stretch
Stretch.c
Stretch.mak
Stretch.prj
Chap14\Stretch\Debug
Stretch.exe
Chap14\Stretch\Release
Stretch.exe
Chap14\Bricks1
Bricks1.c
Bricks1.rc
Resource.h
afxres.h
Bricks1.mak
Bricks1.prj
Chap14\Bricks1\Debug
Bricks1.exe
Chap14\Bricks1\Release
Bricks1.exe
Chap14\Bricks2
Bricks2.c
Bricks2.mak
Bricks2.prj
Chap14\Bricks2\Debug
Bricks2.exe
Chap14\Bricks2\Release
Bricks2.exe
Chap14\Bricks3
Bricks3.c ; Petzold used capital C filename suffix
Bricks3.rc
Resource.h
afxres.h
Bricks3.mak
Bricks3.prj
Chap14\Bricks3\Debug
Bricks3.exe
Chap14\Bricks3\Release
Bricks3.exe
Chap14\HelloBit
HelloBit.c
HelloBit.rc
Resource.h
afxres.h
HelloBit.mak
HelloBit.prj
Chap14\HelloBit\Debug
HelloBit.exe
Chap14\HelloBit\Release
HelloBit.exe
Chap14\Sketch
Sketch.c
Sketch.mak
Sketch.prj
Chap14\Sketch\Debug
Sketch.exe
Chap14\Sketch\Release
Sketch.exe
Chap14\GrafMenu
GrafMenu.c
GrafMenu.rc
Resource.h
afxres.h
GrafMenu.mak
GrafMenu.prj
Chap14\GrafMenu\Debug
GrafMenu.exe
Chap14\GrafMenu\Release
GrafMenu.exe
Chap14\BitMask
BitMask.c
BitMask.rc
Resource.h
afxres.h
BitMask.mak
BitMask.prj
Chap14\BitMask\Debug
BitMask.exe
Chap14\BitMask\Release
BitMask.exe
Chap14\Bounce
Bounce.c
Bounce.mak
Bounce.prj
Chap14\Bounce\Debug
Bounce.exe
Chap14\Bounce\Release
Bounce.exe
Chap14\Scramble
Scramble.c
Scramble.mak
Scramble.prj
Chap14\Scramble\Debug
Scramble.exe
Chap14\Scramble\Release
Scramble.exe
Chap14\Blowup
Blowup.c
Blowup.rc
Resource.h
afxres.h
Blowup.mak
Blowup.prj
Chap14\Blowup\Debug
Blowup.exe
Chap14\Blowup\Release
Blowup.exe ; 442 files thru Chap14
Chap15\DibHeads
DibHeads.c
DibHeads.rc
Resource.h
afxres.h
DibHeads.mak
DibHeads.prj
Chap15\DibHeads\Debug
DibHeads.exe
Chap15\DibHeads\Release
DibHeads.exe
Chap15\ShowDib1
ShowDib1.c
DibFile.c
DibFile.h
ShowDib1.rc
Resource.c
afxres.h
ShowDib1.mak
ShowDib1.prj
Chap15\ShowDib1\Debug
ShowDib1.exe
Chap15\ShowDib1\Release
ShowDib1.exe
Chap15\Apollo11
Apollo11.c
DibFile.h
Apollo11.mak
Apollo11.prj
Chap15\Apollo11\Debug
Apollo11.exe
Chap15\Apollo11\Release
Apollo11.exe
Chap15\SeqDisp
SeqDisp.c
SeqDisp.rc
Resource.h
afxres.h
SeqDisp.mak
SeqDisp.prj
Chap15\SeqDisp\Debug
SeqDisp.exe
Chap15\SeqDisp\Release
SeqDisp.exe
Chap15\ShowDib2
Showdib2.c ; this is Petzold's spelling
ShowDib2.rc
DibFile.c
DibFile.h
Resource.h
afxres.h
ShowDib2.mak
ShowDib2.prj
Chap15\ShowDib2\Debug
ShowDib2.exe
Chap15\ShowDib2\Release
ShowDib2.exe
Chap15\DibConv
DibConv.c
DibConv.rc
Resource.h
afxres.h
DibConv.mak
DibConv.prj
Chap15\DibConv\Debug
DibConv.exe
Chap15\DibConv\Release
DibConv.exe
Chap15\DibSect
DibSect.c
DibSect.rc
Resource.h
afxres.h
DibSect.mak
DibSect.prj
Chap15\DibSect\Debug
DibSect.exe
Chap15\DibSect\Release
DibSect.exe ; 500 files thru Chap 15
Chap16\Grays1
Grays1.c
Grays1.mak
Grays1.prj
Chap16\Grays1\Debug
Grays1.exe
Chap16\Grays1\Release
Grays1.exe
Chap16\Grays2
Grays2.c
Grays2.mak
Grays2.prj
Chap16\Grays2\Debug
Grays2.exe
Chap16\Grays2\Release
Grays2.exe
Chap16\Grays3
Grays3.c
Grays3.mak
Grays3.prj
Chap16\Grays3\Debug
Grays3.exe
Chap16\Grays3\Release
Grays3.exe
Chap16\SysPal1
SysPal1.c
SysPal1.mak
SysPal1.prj
Chap16\SysPal1\Debug
SysPal1.exe
Chap16\SysPal1\Release
SysPal1.exe
Chap16\SysPal2
SysPal2.c
SysPal2.mak
SysPal2.prj
Chap16\SysPal2\Debug
SysPal2.exe
Chap16\SysPal2\Release
SysPal2.exe
Chap16\SysPal3
SysPal3.c
SysPal3.mak
SysPal3.prj
Chap16\SysPal3\Debug
SysPal3.exe
Chap16\SysPal3\Release
SysPal3.exe
Chap16\Bounce
Bounce.c
PalAnim.c
Bounce.mak ; Chap14 also has a Bounce project
Bounce.prj
Chap16\Bounce\Debug
Bounce.exe
Chap16\Bounce\Release
Bounce.exe
Chap16\Fader
Fader.c
Fader.mak
Fader.prj
Chap16\Fader\Debug
Fader.exe
Chap16\Fader\Release
Fader.exe
Chap16\AllColor
AllColor.c
AllColor.mak
AllColor.prj
Chap16\AllColor\Debug
AllColor.exe
Chap16\AllColor\Release
AllColor.exe
Chap16\Pipes
Pipes.c
Pipes.mak
Pipes.prj
Chap16\Pipes\Debug
Pipes.exe
Chap16\Pipes\Release
Pipes.exe
Chap16\Tunnel
Tunnel.c
Tunnel.mak
Tunnel.prj
Chap16\Tunnel\Debug
Tunnel.exe
Chap16\Tunnel\Release
Tunnel.exe
Chap16\ShowDib3
ShowDib3.c
ShowDib3.rc
PackeDib.c
PackeDib.h
Resource.h
afxres.h
ShowDib3.mak
ShowDib3.prj
Chap16\ShowDib3\Debug
ShowDib3.exe
Chap16\ShowDib3\Release
ShowDib3.exe
Chap16\ShowDib4
ShowDib4.c
ShowDib4.rc
Resource.h
afxres.h
ShowDib4.mak
ShowDib4.prj
Chap16\ShowDib4\Debug
ShowDib4.exe
Chap16\ShowDib4\Release
ShowDib4.exe
Chap16\ShowDib5
ShowDib5.c
ShowDib5.rc
Resource.h
afxres.h
ShowDib5.mak
ShowDib5.prj
Chap16\ShowDib5\Debug
ShowDib5.exe
Chap16\ShowDib5\Release
ShowDib5.exe
Chap16\ShowDib6
ShowDib6.c
ShowDib6.rc
Resource.h
afxres.h
ShowDib6.mak
ShowDib6.prj
Chap16\ShowDib6\Debug
ShowDib6.exe
Chap16\ShowDib6\Release
ShowDib6.exe
Chap16\ShowDib7
ShowDib7.c
ShowDib7.rc
Resource.h
afxres.h
ShowDib7.mak
ShowDib7.prj
Chap16\ShowDib7\Debug
ShowDib7.exe
Chap16\ShowDib7\Release
ShowDib7.exe
Chap16\ShowDib8
ShowDib8.c
ShowDib8.rc
Resource.h
afxres.h
ShowDib8.mak
ShowDib8.prj
Chap16\ShowDib8\Debug
ShowDib8.exe
Chap16\ShowDib8\Release
ShowDib8.exe
Chap16\Dibble
Dibble.c
Dibble.rc
Resource.h
DibHelp.c
DibHelp.h
DibConv.c
DibConv.h
DibPal.c
DibPal.h
afxres.h
Dibble.mak
Dibble.prj
Chap16\Dibble\Debug
Dibble.exe
Chap16\Dibble\Release
Dibble.exe ; 620 files thru Chap16
Chap17\PickFont
PickFont.c
PickFont.rc
Resource.h
afxres.h
PickFont.mak
PickFont.prj
Chap17\PickFont\Debug
PickFont.exe
Chap17\PickFont\Release
PickFont.exe
Chap17\EZTest
EZTest.c
EZFont.c
EZFont.h
FontDemo.c
FontDemo.rc
Resource.h
afxres.h
EZTest.mak
EZTest.prj
Chap17\EZTest\Debug
EZTest.exe
Chap17\EZTest\Release
EZTest.exe
Chap17\FontRot
FontRot.c
FontRot.mak
FontRot.prj
Chap17\FontRot\Debug
FontRot.exe
Chap17\FontRot\Release
FontRot.exe
Chap17\ChosFont
ChosFont.c
ChosFont.rc
Resource.h
afxres.h
ChosFont.mak
ChosFont.prj
Chap17\ChosFont\Debug
ChosFont.exe
Chap17\ChosFont\Release
ChosFont.exe
Chap17\UniChars
Unichars.c
Unichars.rc
Resource.h
afxres.h
UniChars.mak
UniChars.prj
Chap17\UniChars\Debug
UniChars.exe
Chap17\UniChars\Release
UniChars.exe
Chap17\Justify1
Justify1.c
Justify1.rc
Resource.h
afxres.h
Justify1.mak
Justify1.prj
Chap17\Justify1\Debug
Justify1.exe
Chap17\Justify1\Release
Justify1.exe
Chap17\Justify2
Justify2.c
Justify2.rc
Resource.h
afxres.h
Justify2.mak
Justify2.prj
Chap17\Justify2\Debug
Justify2.exe
Chap17\Justify2\Release
Justify2.exe
Chap17\EndJoin
EndJoin.c