-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVEditor.clw
executable file
·838 lines (732 loc) · 15.3 KB
/
VEditor.clw
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
; CLW file contains information for the MFC ClassWizard
[General Info]
Version=1
LastClass=CNameEditor
LastTemplate=CDialog
NewFileInclude1=#include "stdafx.h"
NewFileInclude2=#include "veditor.h"
LastPage=0
ClassCount=92
Class1=CChainWnd
Class2=CControl
Class3=CVGKnob
Class4=CVGButton
Class5=CVGEdit
Class6=CVGPickupPos
Class7=CVGSection
Class8=CVGList
Class9=CListBoxCustom
Class10=CDeviceSetting
Class11=CInput
Class12=CLibTreeWnd
Class13=CTreeCtrlCustom
Class14=CNameEditor
Class15=CEditCustom
Class16=CMainFrame
Class17=CPanel
Class18=CPanelEmpty
Class19=CPanelAmp
Class20=CPanelEqualizer
Class21=CPanelPan
Class22=CPanelMixer
Class23=CPanelPitchShift
Class24=CPanelFV
Class25=CPanelNS
Class26=CPanelReverb
Class27=CPanelDelay
Class28=CPanelChorus
Class29=CPanelCompressor
Class30=CPanelLimiter
Class31=CPanelPedalWah
Class32=CPanelAutoWah
Class33=CPanelVolBmpKey
Class34=CPanelVibrato
Class35=CPanelPanEff
Class36=CPanelTremolo
Class37=CPanelUniV
Class38=CPanelPdShift
Class39=CPanelSubEq
Class40=CPanel2x2Chorus
Class41=CPanelFlanger
Class42=CPanelPhaser
Class43=CPanelHarmonist
Class44=CPanelPickup
Class45=CPanelPickupAcous
Class46=CPanelPickupNylon
Class47=CPanelPickupVari
Class48=CPanelBody
Class49=CPanelBodyNylon
Class50=CPanelBodyNylonII
Class51=CPanelCosmGT
Class52=CPanelPShifter
Class53=CPanelPolyOct
Class54=CPanelAssign
Class55=CPanelAssignExp
Class56=CPanelAssignCtl
Class57=CPanelAssignGkVol
Class58=CPanelAssignGkS1S2
Class59=CPanelOpenTune
Class60=CPanelDetune
Class61=CPanelPDShift
Class62=CPanelOrgan
Class63=CPanelDist
Class64=CPanelPolyComp
Class65=CPanelPolySG
Class66=CPanelBowed
Class67=CPanelDual
Class68=CPanelFilterBass
Class69=CPanelPipe
Class70=CPanelSolo
Class71=CPanelPWM
Class72=CPanelCrystal
Class73=CPanelBrass
Class74=CPanelContrast
Class75=CPanelGkFunction
Class76=CPanelGlobal
Class77=CPanelTuner
Class78=CPanelDial
Class79=CPanelOutputSelect
Class80=CPanelDriverSetting
Class81=CPatchWndLayer
Class82=CPatchWnd
Class83=CPreset
Class84=CSendPatch
Class85=CSplashWnd
Class86=CVEditorApp
Class87=CAboutDlg
Class88=CVGWindow
Class89=CListCtrlCustom
Class90=CWorkspaceView
ResourceCount=8
Resource1=IDR_MAINFRAME
Resource2=IDD_SENDPATCH
Resource3=IDD_ABOUTBOX
Resource4=IDD_INPUT
Resource5=IDD_DEVICE
Class91=CSendPatchForm
Resource6=IDD_SENDPATCHFORM
Resource7=IDD_LIBPROPERTIES
Class92=CLibProp
Resource8=IDD_LIBPROP
[CLS:CChainWnd]
Type=0
BaseClass=CWnd
HeaderFile=chainWnd.h
ImplementationFile=chainWnd.cpp
Filter=W
VirtualFilter=WC
LastObject=CChainWnd
[CLS:CControl]
Type=0
BaseClass=CWnd
HeaderFile=controls.h
ImplementationFile=controls.cpp
[CLS:CVGKnob]
Type=0
BaseClass=CControl
HeaderFile=controls.h
ImplementationFile=controls.cpp
[CLS:CVGButton]
Type=0
BaseClass=CControl
HeaderFile=controls.h
ImplementationFile=controls.cpp
[CLS:CVGEdit]
Type=0
BaseClass=CControl
HeaderFile=controls.h
ImplementationFile=controls.cpp
[CLS:CVGPickupPos]
Type=0
BaseClass=CControl
HeaderFile=controls.h
ImplementationFile=controls.cpp
[CLS:CVGSection]
Type=0
BaseClass=CControl
HeaderFile=controls.h
ImplementationFile=controls.cpp
[CLS:CVGList]
Type=0
BaseClass=CControl
HeaderFile=controls.h
ImplementationFile=controls.cpp
[CLS:CListBoxCustom]
Type=0
BaseClass=CListBox
HeaderFile=controls.h
ImplementationFile=controls.cpp
[CLS:CDeviceSetting]
Type=0
BaseClass=CDialog
HeaderFile=DeviceSetting.h
ImplementationFile=DeviceSetting.cpp
[CLS:CInput]
Type=0
BaseClass=CDialog
HeaderFile=Input.h
ImplementationFile=Input.cpp
[CLS:CLibTreeWnd]
Type=0
BaseClass=CWnd
HeaderFile=libTreeWnd.h
ImplementationFile=libTreeWnd.cpp
LastObject=CLibTreeWnd
[CLS:CTreeCtrlCustom]
Type=0
BaseClass=CTreeCtrl
HeaderFile=libTreeWnd.h
ImplementationFile=libTreeWnd.cpp
[CLS:CNameEditor]
Type=0
BaseClass=CWnd
HeaderFile=libTreeWnd.h
ImplementationFile=libTreeWnd.cpp
LastObject=CNameEditor
[CLS:CEditCustom]
Type=0
BaseClass=CEdit
HeaderFile=libTreeWnd.h
ImplementationFile=libTreeWnd.cpp
[CLS:CMainFrame]
Type=0
BaseClass=CFrameWnd
HeaderFile=MainFrm.h
ImplementationFile=MainFrm.cpp
Filter=T
VirtualFilter=fWC
LastObject=ID_LIBTREE
[CLS:CPanel]
Type=0
BaseClass=CWnd
HeaderFile=panel.h
ImplementationFile=panel.cpp
Filter=W
VirtualFilter=WC
LastObject=CPanel
[CLS:CPanelEmpty]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelAmp]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelEqualizer]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelPan]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelMixer]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelPitchShift]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelFV]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelNS]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelReverb]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelDelay]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelChorus]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelCompressor]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelLimiter]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelPedalWah]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelAutoWah]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelVolBmpKey]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelVibrato]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelPanEff]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelTremolo]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelUniV]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelPdShift]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelSubEq]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanel2x2Chorus]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelFlanger]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelPhaser]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelHarmonist]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelPickup]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelPickupAcous]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelPickupNylon]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelPickupVari]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelBody]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelBodyNylon]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelBodyNylonII]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelCosmGT]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelPShifter]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelPolyOct]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelAssign]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelAssignExp]
Type=0
BaseClass=CPanelAssign
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelAssignCtl]
Type=0
BaseClass=CPanelAssign
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelAssignGkVol]
Type=0
BaseClass=CPanelAssign
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelAssignGkS1S2]
Type=0
BaseClass=CPanelAssign
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelOpenTune]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelDetune]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelPDShift]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelOrgan]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelDist]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelPolyComp]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelPolySG]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelBowed]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelDual]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelFilterBass]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelPipe]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelSolo]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelPWM]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelCrystal]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelBrass]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelContrast]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelGkFunction]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelGlobal]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelTuner]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelDial]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelOutputSelect]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
[CLS:CPanelDriverSetting]
Type=0
BaseClass=CPanel
HeaderFile=panel.h
ImplementationFile=panel.cpp
LastObject=CPanelDriverSetting
[CLS:CPatchWndLayer]
Type=0
BaseClass=CWnd
HeaderFile=patchWnd.h
ImplementationFile=patchWnd.cpp
[CLS:CPatchWnd]
Type=0
BaseClass=CWnd
HeaderFile=patchWnd.h
ImplementationFile=patchWnd.cpp
[CLS:CPreset]
Type=0
BaseClass=CControl
HeaderFile=preset.h
ImplementationFile=preset.cpp
Filter=W
VirtualFilter=WC
LastObject=CPreset
[CLS:CSendPatch]
Type=0
BaseClass=CDialog
HeaderFile=SendPatch.h
ImplementationFile=SendPatch.cpp
[CLS:CSplashWnd]
Type=0
BaseClass=CWnd
HeaderFile=Splash.h
ImplementationFile=Splash.cpp
[CLS:CVEditorApp]
Type=0
BaseClass=CWinApp
HeaderFile=VEditor.h
ImplementationFile=VEditor.cpp
[CLS:CAboutDlg]
Type=0
BaseClass=CDialog
HeaderFile=VEditor.cpp
ImplementationFile=VEditor.cpp
LastObject=CAboutDlg
[CLS:CVGWindow]
Type=0
BaseClass=CWnd
HeaderFile=VGWindow.h
ImplementationFile=VGWindow.cpp
Filter=W
VirtualFilter=WC
LastObject=CVGWindow
[CLS:CListCtrlCustom]
Type=0
BaseClass=CListCtrl
HeaderFile=VGWindow.h
ImplementationFile=VGWindow.cpp
LastObject=CListCtrlCustom
Filter=W
VirtualFilter=FWC
[CLS:CWorkspaceView]
Type=0
BaseClass=CWnd
HeaderFile=WorkspaceView.h
ImplementationFile=WorkspaceView.cpp
[DLG:IDD_DEVICE]
Type=1
Class=CDeviceSetting
ControlCount=15
Control1=IDOK,button,1342242817
Control2=IDCANCEL,button,1342242816
Control3=IDC_STATIC,static,1342308352
Control4=IDC_STATIC,static,1342308352
Control5=IDC_STATIC,static,1342308352
Control6=IDC_STATIC,static,1342308352
Control7=IDC_DEVICETYPE,combobox,1344340227
Control8=IDC_DEVICENAME,edit,1350631552
Control9=IDC_STATIC,static,1342308352
Control10=IDC_DEVICEID,edit,1350631553
Control11=IDC_STATIC,button,1342177287
Control12=IDC_MIDIINPUT,combobox,1344339971
Control13=IDC_MIDIOUTPUT,combobox,1344339971
Control14=IDC_STATIC,static,1342308352
Control15=IDC_AUDITIONPATCH,combobox,1344339971
[DLG:IDD_INPUT]
Type=1
Class=CInput
ControlCount=3
Control1=IDC_NAME,edit,1350631552
Control2=IDCANCEL,button,1342242816
Control3=IDOK,button,1342242817
[DLG:IDD_SENDPATCH]
Type=1
Class=CSendPatch
ControlCount=4
Control1=IDCANCEL,button,1342242816
Control2=IDC_PROGRESS1,msctls_progress32,1350565888
Control3=IDC_LABEL,static,1342308352
Control4=IDC_STATIC,static,1342177294
[DLG:IDD_ABOUTBOX]
Type=1
Class=CAboutDlg
ControlCount=2
Control1=IDOK,button,1342373889
Control2=IDC_STATIC,static,1476397582
[TB:IDR_MAINFRAME]
Type=1
Class=?
Command1=ID_NEW
Command2=ID_OPEN
Command3=ID_SAVE
Command4=ID_SAVE_ALL
Command5=ID_EDIT_CUT
Command6=ID_EDIT_COPY
Command7=ID_EDIT_PASTE
Command8=ID_SEND
Command9=ID_RECEIVE
Command10=ID_SYNCHRONIZE
Command11=ID_LIBTREE
Command12=ID_CHAIN
Command13=ID_PATCHEDIT
Command14=ID_OPENVGWINDOW
Command15=ID_TILEH
Command16=ID_TILEV
Command17=ID_APP_ABOUT
CommandCount=17
[MNU:IDR_MAINFRAME]
Type=1
Class=?
Command1=ID_NEW
Command2=ID_OPEN
Command3=ID_CLOSE
Command4=ID_SAVE
Command5=ID_SAVEAS
Command6=ID_SAVE_ALL
Command7=ID_APP_SETTINGS
Command8=ID_PROPERTIES
Command9=ID_APP_EXIT
Command10=ID_EDIT_UNDO
Command11=ID_EDIT_CUT
Command12=ID_EDIT_COPY
Command13=ID_EDIT_PASTE
Command14=ID_EDIT_RENAME
Command15=ID_SEND
Command16=ID_RECEIVE
Command17=ID_SYNCHRONIZE
Command18=ID_OPENVGWINDOW
Command19=ID_LIBTREE
Command20=ID_CHAIN
Command21=ID_PATCHEDIT
Command22=ID_ORDER
Command23=ID_APP_ABOUT
CommandCount=23
[ACL:IDR_MAINFRAME]
Type=1
Class=?
Command1=ID_EDIT_COPY
Command2=ID_EDIT_PASTE
Command3=ID_EDIT_UNDO
Command4=ID_EDIT_CUT
Command5=ID_NEXT_PANE
Command6=ID_PREV_PANE
Command7=ID_EDIT_COPY
Command8=ID_EDIT_PASTE
Command9=ID_EDIT_CUT
Command10=ID_EDIT_UNDO
CommandCount=10
[DLG:IDD_SENDPATCHFORM]
Type=1
Class=CSendPatchForm
ControlCount=11
Control1=IDC_FROM_PATCH,combobox,1344339971
Control2=IDC_TO_PATCH,combobox,1344339971
Control3=IDC_TO_PROGRAM,combobox,1344339971
Control4=IDOK,button,1342242817
Control5=IDCANCEL,button,1342242816
Control6=IDC_STATIC,static,1342308352
Control7=IDC_STATIC,static,1342308352
Control8=IDC_STATIC,static,1342308352
Control9=IDC_STATIC,static,1342308352
Control10=IDC_TITLE,button,1342177287
Control11=IDC_SYSTEM,button,1342242819
[CLS:CSendPatchForm]
Type=0
HeaderFile=SendPatchForm.h
ImplementationFile=SendPatchForm.cpp
BaseClass=CDialog
Filter=D
LastObject=CSendPatchForm
VirtualFilter=dWC
[DLG:IDD_LIBPROPERTIES]
Type=1
Class=?
ControlCount=1
Control1=IDOK,button,1342242817
[DLG:IDD_LIBPROP]
Type=1
Class=CLibProp
ControlCount=8
Control1=IDOK,button,1342242817
Control2=IDCANCEL,button,1342242816
Control3=IDC_STATIC,static,1342177294
Control4=IDC_FILE,static,1342308352
Control5=IDC_STATIC,static,1342308352
Control6=IDC_FIRSTPATCH,combobox,1344339971
Control7=IDC_LIBNAME,edit,1350631552
Control8=IDC_STATIC,static,1342308352
[CLS:CLibProp]
Type=0
HeaderFile=LibProp.h
ImplementationFile=LibProp.cpp
BaseClass=CDialog
Filter=D
VirtualFilter=dWC
LastObject=CLibProp