-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresource.h
1043 lines (1042 loc) · 46.3 KB
/
resource.h
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
//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by WaveSoapFront.rc
//
#define IDD_ABOUTBOX 100
#define IDS_WAV_FILTER 102
#define IDD_FUNCTIONS_TAB 102
#define IDD_PROPPAGE_DECLICK 104
#define IDD_PROPPAGE_NOISEREDUCT 106
#define IDD_PROPPAGE_FILE_PREFERENCES 106
#define IDR_MAINFRAME 128
#define IDR_WAVESOTYPE 129
#define IDR_MENU_TIME_RULER 130
#define IDR_MP3TYPE 130
#define IDD_SELECTION_DIALOG 131
#define IDR_WMATYPE 131
#define IDR_ALLTYPES 132
#define IDD_DIALOG_MORE_NOISEREDUCTION 133
#define IDR_MENU_AMPLITUDE_RULER 133
#define IDR_RAWTYPE 133
#define IDD_DIALOG_MORE_DECLICK 134
#define IDR_MENU_FFT_RULER 134
#define IDR_WMATYPE2 134
#define IDR_WMTYPES 134
#define IDD_DIALOGBAR_MDI_CHILD 135
#define IDR_WMATYPE3 135
#define IDR_AVITYPE 135
#define IDD_DIALOG_OPEN_TEMPLATE 136
#define IDR_DSHOW_TYPE 136
#define IDR_MENU_POPUP_SAMPLE_RATE 137
#define IDR_FLAC_TYPE 137
#define IDR_MENU_POPUP_CHANNELS 138
#define IDD_DIALOG_COPY_CHANNELS_SELECT 138
#define IDR_DSHOW_TYPE3 138
#define IDR_OGG_TYPE 138
#define IDR_MENU_POPUP_SAMPLE_SIZE 139
#define IDD_DIALOG_PASTE_MODE_SELECT 139
#define IDR_MENU_WAVE_VIEW 140
#define IDD_DIALOG_VOLUME_CHANGE 140
#define IDR_MENU_WAVE_VIEW_SELECTION 141
#define IDD_DIALOG_VOLUME_CHANGE_MONO 141
#define IDR_MENU_FFT_VIEW 142
#define IDD_DIALOG_GOTO 142
#define IDR_MENU_CURRENT_POSITION 143
#define IDD_DIALOG_DC_OFFSET 143
#define IDR_MENU_SELECTION_LENGTH 144
#define IDR_MENU_FILE_LENGTH 145
#define IDD_DIALOG_NORMALIZE 145
#define IDD_DIALOG_RESAMPLE 146
#define IDR_MENU_SPECTRUMSECTION_VIEW 146
#define IDR_MENU_POPUP_HOR_SCALE1 147
#define IDD_DIALOG_STATISTICS 147
#define IDD_DIALOG_OPEN_TEMPLATE1 148
#define IDR_MENU_POPUP_HOR_SCALE2 148
#define IDD_DIALOG_OPEN_TEMPLATE_V5 148
#define IDD_DIALOG_SAVE_TEMPLATE 149
#define IDR_MENU_POPUP_HOR_SCALE256 149
#define IDC_CURSOR_BEAM 150
#define IDD_DIALOG_ULF_REDUCTION 150
#define IDR_MENU_POPUP_HOR_SCALE4 150
#define IDC_CURSOR_BEAM_LEFT 151
#define IDD_DIALOG_EXPRESSION_EVALUATION 151
#define IDR_MENU_POPUP_HOR_SCALE128 151
#define IDC_CURSOR_BEAM_RIGHT 152
#define IDD_DIALOG_DECLICKING 152
#define IDR_MENU_POPUP_HOR_SCALE64 152
#define IDD_DIALOG_NOISE_REDUCTION 153
#define IDR_MENU_POPUP_HOR_SCALE32 153
#define IDD_DIALOG_INSERT_SILENCE 154
#define IDR_MENU_POPUP_HOR_SCALE8 154
#define IDD_DIALOG_MUTE_OR_SILENCE 155
#define IDR_MENU_POPUP_HOR_SCALE16 155
#define IDR_MENU_POPUP_HOR_SCALE1024 156
#define IDD_DIALOG_NO_WINDOWS_MEDIA 156
#define IDR_MENU_POPUP_HOR_SCALE2048 157
#define IDD_DIALOG_CD_GRABBING 157
#define IDR_MENU_POPUP_HOR_SCALE512 158
#define IDR_MENU_POPUP_HOR_SCALE4096 159
#define IDR_MENU_POPUP_HOR_SCALE8192 160
#define IDD_DIALOG_REOPEN_DIRECT 160
#define IDD_OPERANDS_TAB 161
#define IDD_OPERATORS_TAB 162
#define IDD_SAVED_EXPRESSIONS_TAB 163
#define IDD_DIALOG_SAVE_EXPRESSION 164
#define IDD_DIALOG_CUSTOM_SAMPLERATE 165
#define IDD_DIALOG_NEW_FILE_PARAMETERS 166
#define IDD_DIALOG_SAVE_TEMPLATE_V5 168
#define IDD_PROPPAGE_VIEW_PREFERENCES 169
#define IDD_PROPPAGE_SOUND_PREFERENCES 170
#define IDD_DIALOG_REOPEN_COMPRESSED 171
#define IDD_DIALOG_SHOULD_RELOAD_CONVERTED 172
#define IDD_DIALOG_RECORD_SOUND 173
#define IDD_DIALOG_SIMPLE_EQUALIZER 174
#define IDD_SELECTION_DIALOG_MONO 175
#define IDD_DIALOG_INSERT_SILENCE_MONO 176
#define IDR_CHILDFRAME 177
#define IDD_FUNCTIONS_AND_OPERATORS_TAB 177
#define IDD_DIALOG_NO_WINDOWS_MEDIA_TYPE 178
#define IDD_DIALOG_RAW_FILE_PARAMETERS 179
#define ID_BITMAP_ZOOMINVERT 179
#define IDD_DIALOG_SAVE_RAW_FILE 180
#define ID_BITMAP_ZOOMOUTVERT 180
#define IDD_DIALOG_FILTER 181
#define ID_BITMAP_ZOOMINHOR 181
#define ID_BITMAP_ZOOMOUTHOR 182
#define IDD_DIALOG_OPEN_AFTER_SAVE_COPY 182
#define IDD_DIALOG_PASTE_RESAMPLE_MODE 183
#define IDD_DIALOG_BATCH_CONVERSION 185
#define IDD_DIALOG_BATCH_SAVE_TARGET 186
#define IDR_MENU_CDGRAB 187
#define IDI_ICON_CD 188
#define IDD_DIALOG_OPEN_TEMPLATE_V7 188
#define IDD_DIALOG_WITH_HISTORY_TEMPLATE_V5 188
#define IDB_BITMAP_PLAY 189
#define IDD_REGION_DIALOG 189
#define IDB_BITMAP_EJECT 190
#define IDB_BITMAP_STOP 191
#define IDB_BITMAP_LOAD 192
#define IDR_MENU_TIME_RULER_MARKER 194
#define IDR_MENU_TIME_RULER_MARKER1 195
#define IDR_MENU_TIME_RULER_REGION 195
#define IDD_DIALOG_FADEINOUT 195
#define IDD_SELECTION_DIALOG_MONO1 196
#define IDD_DIALOG_SPLIT_TO_FILES 196
#define IDI_ICON_SPLIT_TO_FILES 196
#define IDD_PROPPAGE_UNDO_PREFERENCES 197
#define IDR_MENU_POPUP_SS_RULER 199
#define IDI_ICON_EQIALIZER 200
#define IDR_MENU_WAVE_VIEW1 200
#define IDR_MENU_WAVE_VIEW_MINIMIZED 200
#define IDI_ICON_FILTER_DIALOG 201
#define IDR_MENU_AMPLITUDE_RULER_MINIMIZED 201
#define IDD_DIALOG_UNDO_REDO_OPTIONS 202
#define IDR_MENU_WAVE_VIEW_SELECTION1 202
#define IDR_MENU_WAVE_VIEW_SELECTION_MINIMIZED 202
#define IDD_DIALOG_FADE_IN_OUT 203
#define IDD_DIALOG_EDIT_FADE_IN_OUT 203
#define IDR_MENU_FFT_VIEW_MINIMIZED 203
#define IDR_MENU_FFT_RULER_MINIMIZED 204
#define IDD_DIALOG_SAVE_TEMPLATE_VISTA 204
#define IDR_MENU_SPECTRUMSECTION_MINIMIZED 205
#define IDR_MENU_FFT_VIEW_SELECTION_MINIMIZED 206
#define IDR_MENU_FFT_VIEW_SELECTION 207
#define IDC_EDIT_MIN_CLICK_AMPLITUDE 1000
#define IDC_TAB_SWITCH_VIEW_MODE 1000
#define IDC_CHECK_LOG_CLICKS 1001
#define IDC_EDIT_CLICK_LOG_FILENAME 1002
#define IDC_COMBO_SELECTION 1002
#define IDC_CLICK_LOG_BROWSE_BUTTON 1003
#define IDC_EDIT_START 1003
#define IDC_CHECK_LOG_CLICKS_ONLY 1004
#define IDC_EDIT_END 1004
#define IDC_EDIT_CLICK_TO_NOISE 1005
#define IDC_EDIT3 1005
#define IDC_EDIT_LENGTH 1005
#define IDC_EDIT_PLAYBACK_BUF_SIZE 1005
#define IDC_EDIT_NORMALIZE 1005
#define IDC_EDIT_MAX_CLICK_LENGTH 1006
#define IDC_EDIT_RECORDING_BUF_SIZE 1006
#define IDC_EDIT_ATTACK_RATE 1007
#define IDC_SPIN1 1007
#define IDC_SPIN_START 1007
#define IDC_EDIT_DECAY_RATE 1008
#define IDC_SPIN2 1008
#define IDC_SPIN_END 1008
#define IDC_SPIN_NUM_RECORDING_BUFFERS 1008
#define IDC_EDIT_CLICK_IMPORT_FILENAME 1009
#define IDC_SPIN3 1009
#define IDC_SPIN_LENGTH 1009
#define IDC_CLICK_IMPORT_BROWSE_BUTTON 1010
#define IDC_COMBO2 1010
#define IDC_COMBO_FORMAT 1010
#define IDC_COMBO_SPEED 1010
#define IDC_COMBO_START 1010
#define IDC_CHECK_IMPORT_CLICKS 1011
#define IDC_CHECK_NOISE_REDUCTION 1011
#define IDC_CHECK_READONLY 1011
#define IDC_COMBO_ATTRIBUTES 1011
#define IDC_COMBO_END 1011
#define IDC_CHECK_DIRECT 1012
#define IDC_COMBO_FORMAT_TAG 1012
#define IDC_CHECK_IMPORTED_CLICKS_ONLY 1012
#define IDC_COMBO1 1013
#define IDC_COMBO_RECENT 1013
#define IDC_COMBODB_PERCENT 1013
#define IDC_COMBO_TIME_FORMAT 1013
#define IDC_COMBO_DRIVES 1013
#define IDC_COMBO_NAME 1013
#define IDC_COMBO_SAVED_EXPRESSION_GROUP 1013
#define IDC_COMBO_SAMPLING_RATE 1013
#define IDC_COMBO_GROUP 1014
#define IDC_COMBO_ATTRIBUTES2 1014
#define IDC_COMBO_FORMAT_ATTRIBUTES 1014
#define IDC_COMBO_SAMPLE_TYPE 1014
#define IDC_COMBO_NUMBER_OF_CHANNELS 1015
#define IDC_STATIC_FILE_TYPE 1016
#define IDC_STATIC_FILE_FORMAT 1017
#define IDC_EDIT_LOWER_FREQUENCY 1018
#define IDC_STATIC_ATTRIBUTES 1019
#define IDC_EDIT_TRANSIENT_THRESHOLD 1020
#define IDC_EDIT_NOISE_CRITERION 1021
#define IDC_EDIT_FILE_COMMENTS 1021
#define IDC_EDIT_TONE_PREFERENCE 1022
#define IDC_EDIT_NOISE_AREA_THRESHOLD_HIGH 1023
#define IDC_STATIC_FILE_LENGTH 1023
#define IDC_COMBO_FFT_ORDER 1024
#define IDC_RADIO_LEFT 1024
#define IDC_EDIT_NOISE_REDUCTION 1025
#define IDC_RADIO_RIGHT 1025
#define IDC_EDIT_NOISE_AREA_THRESHOLD_LOW 1026
#define IDC_RADIO_CHANNEL_BOTH 1026
#define IDC_BUTTON_MORE 1027
#define IDC_RADIO_SELECT 1027
#define IDC_SLIDER_VOLUME_LEFT 1028
#define IDC_BUTTON_RESET_DEFAULT 1029
#define IDC_EDIT_VOLUME_LEFT 1029
#define IDC_BUTTON_SELECTION 1030
#define IDC_SLIDER_TEMPO 1030
#define IDC_STATIC_SELECTION 1031
#define IDC_EDIT_TEMPO 1031
#define IDC_CHECK_UNDO 1032
#define IDC_EDIT_FAR_MASKING_LEVEL 1033
#define IDC_SLIDER_VOLUME_RIGHT 1033
#define IDC_BUTTON_REVERT_INITIAL2 1033
#define IDC_EDIT_AGGRESSIVNESS 1033
#define IDC_EDIT_NEAR_MASKING_DISTANCE_HIGH 1034
#define IDC_CHECK_DEHUMMING 1034
#define IDC_BUTTON_MORE_SETTINGS2 1034
#define IDC_EDIT_FAR_MASKING_COEFF 1035
#define IDC_CHECK_DECLICKING 1035
#define IDC_EDIT_VOLUME_RIGHT 1035
#define IDC_EDIT_AGGRESSIVNESS2 1035
#define IDC_EDIT4 1036
#define IDC_CHECKLOCK_CHANNELS 1036
#define IDC_EDIT_NEAR_MASKING_DISTANCE_LOW 1037
#define IDC_TAB_VIEW_SWITCH 1037
#define IDC_STATIC_RIGHT_CHANNEL 1037
#define IDC_EDIT_MASKING_TIME_HIGH 1038
#define IDC_STATIC_LEFT_CHANNEL 1038
#define IDC_EDIT_MASKING_TIME_LOW 1039
#define IDC_BUTTON_PLAY 1039
#define IDC_RADIO1 1040
#define IDC_RADIO2 1041
#define IDC_RADIO_CHANNEL 1042
#define IDC_RADIO_16BITS 1042
#define IDC_RADIO_WMA 1042
#define IDC_RADIO7 1042
#define IDC_RADIO_SINE_COSINE 1042
#define IDC_RADIO_DC_SELECT 1043
#define IDC_EDIT_DC_OFFSET 1044
#define IDC_CHECK_5SECONDS 1045
#define IDC_CHECK_LOCK_CHANNELS 1047
#define IDC_SLIDER_LEVEL 1048
#define IDC_EDIT_LEVEL 1049
#define IDC_RADIO_CHANGE_RATE 1050
#define IDC_RADIO_CHANGE_PITCH 1051
#define IDC_CHECK_CHANGE_RATE_ONLY 1052
#define IDC_SLIDER_RATE 1053
#define IDC_EDIT_RATE 1054
#define IDC_CHECK_COMPATIBLE_FORMATS 1055
#define IDC_CHECK_DIFFERENTIAL_MODE_SUPPRESS 1056
#define IDC_CHECK_LOW_FREQUENCY 1057
#define IDC_EDIT_DIFF_NOISE_RANGE 1058
#define IDC_EDIT_LF_NOISE_RANGE 1059
#define IDC_EDIT_EXPRESSION 1059
#define IDC_BUTTON_REVERT_INITIAL 1061
#define IDC_BUTTON_MORE_SETTINGS 1062
#define IDC_BUTTON_SET_THRESHOLD 1070
#define IDC_BUTTON_SILENCE 1071
#define IDC_BUTTON_MAILTO 1072
#define IDC_BUTTON_HOMEPAGE 1073
#define IDC_CHECK_DONT_SHOW_THIS 1074
#define IDC_BUTTON_CDDB 1078
#define IDC_CHECK_SINGLE_FILE 1079
#define IDC_LIST_TRACKS 1080
#define IDC_STATIC_SPEED 1081
#define IDC_STATIC_PROMPT 1083
#define IDC_TAB_TOKENS 1105
#define IDC_STATIC_TAB_INTERIOR 1106
#define IDC_BUTTON_SAVEAS 1107
#define IDC_STATIC_DESCRIPTION 1108
#define IDC_EDIT_COMMENT 1110
#define IDC_BUTTON_DELETE_EXPRESSION 1112
#define IDC_EDIT_FREQUENCY 1113
#define IDC_EDIT_SAMPLE_RATE 1114
#define IDC_EDIT_FREQUENCY1 1114
#define IDC_EDIT_FILTER_STOP_FREQUENCY 1114
#define IDC_RADIO_MONO 1115
#define IDC_EDIT_FREQUENCY2 1115
#define IDC_RADIO_STEREO 1116
#define IDC_EDIT_FREQUENCY3 1116
#define IDC_CHECK_24BIT 1117
#define IDC_CHECK_SHOW_ONLY_WHEN_SHIFT 1119
#define IDC_STATIC_VERSION 1120
#define IDC_EDIT_NUM_PLAYBACK_BUFFERS 1123
#define IDC_EDIT_TEMP_FILE_LOCATION 1124
#define IDC_EDIT_NUM_RECORDING_BUFFERS 1124
#define IDC_BUTTON1 1125
#define IDC_BUTTON2 1126
#define IDC_CHECK_ENABLE_UNDO 1126
#define IDC_BUTTON3 1127
#define IDC_CHECK_LIMIT_UNDO 1127
#define IDC_BUTTON4 1128
#define IDC_CHECK_LIMIT_UNDO_DEPTH 1128
#define IDC_CHECK_ENABLE_REDO 1129
#define IDC_BUTTON_DELETE_FILES 1129
#define IDC_EDIT_REDO_SIZE_LIMIT 1130
#define IDC_CHECK_LIMIT_REDO_SIZE 1131
#define IDC_CHECK_LIMIT_REDO_DEPTH 1132
#define IDC_CHECK_TEMP_MEMORY_FILES 1133
#define IDC_RADIO3 1136
#define IDC_CHECK_REMEMBER_SELECTION_IN_UNDO 1137
#define IDC_BUTTON5 1139
#define IDC_BUTTON6 1140
#define IDC_BUTTON7 1141
#define IDC_EDIT_UNDO_LIMIT 1142
#define IDC_EDIT_UNDO_DEPTH_LIMIT 1143
#define IDC_SPIN_UNDO_DEPTH 1144
#define IDC_BUTTON_BROWSE_TEMP_FILE_LOCATION 1145
#define IDC_EDIT_TEMP_MEMORY_FILE_LIMIT 1146
#define IDC_EDIT_REDO_DEPTH_LIMIT 1147
#define IDC_SPIN_REDO_LIMIT 1148
#define IDC_RADIO_OPEN_FILE_MODE 1149
#define IDC_CHECK_SNAP_MOUSE_SELECTION 1150
#define IDC_CHECK1 1151
#define IDC_BUTTON8 1152
#define IDC_CHECK_HIGHPASS 1152
#define IDC_RADIO4 1153
#define IDC_CHECK_HIGHPASS2 1153
#define IDC_CHECK_HILBERT_TRANSFORM 1153
#define IDC_RADIO_WAV_SIZE 1154
#define IDC_RADIO_COMPRESSION_ULAW 1154
#define IDC_COMBO_PLAYBACK_DEVICE 1155
#define IDC_SPIN_NUM_PLAYBACK_BUFFERS 1156
#define IDC_COMBO_RECORDING_DEVICE 1157
#define IDC_EDIT_MAX_FILE_CACHE 1158
#define IDC_STATIC_FILE_NAME 1159
#define IDC_EDIT_BAND_GAIN 1161
#define IDC_EDIT_FILTER_STOPBAND_LOSS 1162
#define IDC_STATIC_RESPONSE_TEMPLATE 1168
#define IDC_SPIN_BANDS 1169
#define IDC_EDIT_BANDS 1170
#define IDC_RADIO_EQUALIZER_TYPE 1171
#define IDC_BUTTON_RESET_BANDS 1172
#define IDC_BUTTON_LOAD 1173
#define IDC_BUTTON_SAVE_AS 1174
#define IDC_STATIC1 1175
#define IDC_STATIC2 1176
#define IDC_STATIC3 1177
#define IDC_BUTTON_EXPORT_EXPRESSIONS 1178
#define IDC_STATIC4 1178
#define IDC_BUTTON_IMPORT_EXPRESSIONS 1179
#define IDC_STATIC9 1179
#define IDC_EDIT_HEADER_LENGTH 1180
#define IDC_STATIC10 1180
#define IDC_EDIT_TRAILER_LENGTH 1181
#define IDC_RADIO_LSB_FIRST 1182
#define IDC_RADIO_MSB_FIRST 1183
#define IDC_STATIC_BYTE_ORDER 1184
#define IDC_RADIO_8BITS 1185
#define IDC_RADIO_COMPRESSION_NONE 1186
#define IDC_RADIO_COMPRESSION_ALAW 1187
#define IDC_STATIC_COMPRESSION 1188
#define IDC_CHECK_ZERO_PHASE 1189
#define IDC_CHECK_LOWPASS 1190
#define IDC_CHECK_STOPBAND 1191
#define IDC_STATIC_FORMAT 1191
#define IDC_STATIC_COMMENTS 1192
#define IDC_STATIC_TITLE 1193
#define IDC_BUTTON_SELECT_ALL 1194
#define IDC_BUTTON_DESELECT_ALL 1195
#define IDC_CHECK_MAKE_PLAYLIST 1196
#define IDC_CHECK_MAKE_HTML 1197
#define IDC_BUTTON_BROWSE_PLAYLIST 1198
#define IDC_BUTTON_BROWSE_WEBPAGE 1199
#define IDC_EDIT_HTML 1200
#define IDC_LIST1 1206
#define IDC_BUTTON_MOVE_UP 1207
#define IDC_LIST_DESTINATIONS 1208
#define IDC_BUTTON_DELETE_DESTINATION 1209
#define IDC_BUTTON_ADD_DESTINATION 1210
#define IDC_BUTTON_EDIT_DESTINATION 1211
#define IDC_EDIT_SAVE_FOLDER 1212
#define IDC_BUTTON_BROWSE_DST_FOLDER 1213
#define IDC_EDIT_PLAYLIST 1214
#define IDC_RADIO_SAVE_TYPE 1216
#define IDC_BUTTON_FORMAT 1217
#define IDC_STATIC_FORMAT_DETAILS 1218
#define IDC_BUTTON_MOVE_DOWN 1219
#define IDC_BUTTON_ADD_FILES 1220
#define IDC_CHECK_MAKE_PLAYLIST_ONLY 1221
#define IDC_CHECK_NORMALIZE 1222
#define IDC_STATIC_NORMALIZE_DB 1223
#define IDC_RADIO_MP3 1224
#define IDC_STATIC_SAVE_TYPE 1225
#define IDC_BUTTON_BROWSE_SAVE_FOLDER 1230
#define IDC_RADIO_ASSIGN_SELECTED_TRACK 1232
#define IDC_RADIO_ASSIGN_ATTRIBUTES 1233
#define IDC_RADIO_STORE_IMMEDIATELY 1236
#define IDC_STATIC_ALBUM 1238
#define IDC_STATIC_ARTIST 1239
#define IDC_RADIO_LOAD_FOR_EDITING 1240
#define IDC_BUTTON_STOP 1241
#define IDC_STATIC_STORE_FOLDER 1242
#define IDC_RADIO_WAV_FORMAT 1243
#define IDC_RADIO_WMA_FORMAT 1244
#define IDC_STATIC_SAVE_AS 1245
#define IDC_COMBO_BITRATE 1246
#define IDC_BUTTON_EJECT 1247
#define IDC_STATIC_BITRATE 1248
#define IDC_RADIO_MP3_FORMAT 1249
#define IDC_COMBO_ALBUM 1250
#define IDC_COMBO_ARTIST 1251
#define IDC_COMBO_FOLDER 1252
#define IDC_COMBO_TITLE 1256
#define IDC_STATIC_GROUPBOX 1257
#define IDC_COMBO3 1258
#define IDC_COMBO_TRIGGER 1258
#define IDC_COMBO_SAVE_DIR 1258
#define IDC_COMBO_MARKER_NAME 1259
#define IDC_RADIO_MARKER 1260
#define IDC_RADIO_REGION 1261
#define IDC_EDIT1 1263
#define IDC_EDIT_MARKER_NAME 1263
#define IDC_EDIT_TRANSITION_LENGTH 1263
#define IDC_RADIO5 1264
#define IDC_RADIO6 1265
#define IDC_RADIO_TEXT_ANSI 1266
#define IDC_BUTTON_GOTO_MAX 1267
#define IDC_CHECK_ENABLE_FADEINOUT 1268
#define IDC_RADIO_LINEAR 1269
#define IDC_RADIO_SQUARED_SINE 1270
#define IDC_BUTTON_DELETE 1271
#define IDC_BUTTON_SAVE 1272
#define IDC_LIST_FILES 1273
#define IDC_BUTTON_BROWSE_FOLDER 1274
#define IDC_COMBO_FILE_TYPE 1276
#define IDC_STATIC_FORMAT_ATTRIBUTES 1277
#define IDC_COMBO4 1278
#define IDC_COMBO_FILENAME_PREFIX 1278
#define IDC_BUTTON_NEW 1279
#define IDC_STATIC5 1280
#define IDC_STATIC6 1281
#define IDC_STATIC7 1282
#define IDC_STATIC8 1283
#define IDC_RADIO_DC_EDIT 1284
#define IDC_EDIT_FILTER_PASSBAND_LOSS 1285
#define IDC_EDIT_FILTER_PASSBAND_FREQUENCY 1286
#define IDC_EDIT_FILTER_PASS_FREQUENCY 1286
#define IDC_STATIC_UNDO_STATUS 1288
#define IDC_STATIC_REDO_STATUS 1289
#define IDC_BUTTON_CLEAR_UNDO 1290
#define IDC_BUTTON_CLEAR_REDO 1291
#define IDC_CHECK_LIMIT_UNDO_SIZE 1292
#define IDC_SPIN_REDO_DEPTH 1293
#define IDC_EDIT_UNDO_SIZE_LIMIT 1294
#define IDC_STATIC_UNDO_MB 1295
#define IDC_STATIC_REDO_MB 1296
#define IDC_RADIO_FADE_IN 1297
#define IDC_RADIO_FADE_OUT 1298
#define IDC_STATIC_MORE_IN_EFFECT 1299
#define IDC_EDIT 1300
#define ID_VIEW_RULER_SAMPLES 32771
#define ID_VIEW_RULER_HHMMSS 32772
#define ID_VIEW_RULER_SECONDS 32773
#define ID_SOUND_PLAY 32774
#define ID_SOUND_PAUSE 32775
#define ID_SOUND_STOP 32776
#define ID_VIEW_SHOW_FFT 32777
#define ID_VIEW_WAVEFORM 32778
#define ID_PROCESS_DO_ULF 32780
#define ID_PROCESS_DO_DECLICKING 32781
#define ID_PROCESS_NOISE_REDUCTION 32782
#define ID_EDIT_DELETE 32783
#define ID_EDIT_STOP 32784
#define ID_FILE_SAVE_ALL 32786
#define ID_EDIT_PASTE_NEW 32787
#define ID_EDIT_GOTO 32788
#define ID_VIEW_AMPL_RULER_SAMPLES 32789
#define ID_VIEW_ZOOMIN 32790
#define ID_VIEW_ZOOMOUT 32791
#define ID_VIEW_AMPL_RULER_DECIBELS 32792
#define ID_VIEW_ZOOM_OUT2 32793
#define ID_VIEW_ZOOMIN2 32794
#define ID_VIEW_ZOOMINHOR 32795
#define IDS_BAD_FLOAT_VALUE 32796
#define IDS_VALUE_REQUIRED 32797
#define IDS_VALUE_TOO_LOW 32798
#define IDS_VALUE_TOO_HIGH 32799
#define IDS_INI_FILTER 32800
#define ID_VIEW_ZOOM_OUT3 32801
#define ID_VIEW_ZOOMIN3 32802
#define ID_VIEW_ZOOMINHOR2 32803
#define ID_INDICATOR_MOUSE_POSITION 32804
#define IDS_NOT_ENOUGH_MEMORY 32805
#define IDS_NOT_ENOUGH_UNDO_SPACE 32806
#define IDS_NOT_ENOUGH_DISK_SPACE 32807
#define IDS_DELETE_EXPRESSION 32808
#define IDS_REPLACE_EXPRESSION 32809
#define ID_VIEW_ZOOMINVERT 32810
#define ID_VIEW_ZOOMOUTHOR 32811
#define ID_VIEW_ZOOMOUTVERT 32812
#define ID_VIEW_ZOOMINVERT2 32813
#define ID_VIEW_ZOOMOUTHOR2 32814
#define ID_VIEW_ZOOMOUTVERT2 32815
#define IDS_STRING_UNABLE_TO_CREATE_CLIPBOARD 32816
#define IDS_STRING_OPERATION_IN_PROGRESS 32817
#define IDS_STRING_UNABLE_TO_OPEN_AUDIO_DEVICE 32818
#define IDS_STRING_UNABLE_TO_ALLOCATE_AUDIO_BUFFERS 32819
#define IDS_UNABLE_TO_LOAD_WAVEFORMAT 32820
#define IDS_UNABLE_TO_FIND_DATA_CHUNK 32821
#define IDS_UNABLE_TO_OPEN_WAVE_FILE 32822
#define IDS_FILE_OPEN_ACCESS_DENIED 32823
#define IDS_FILE_OPEN_SHARING_VIOLATION 32824
#define IDS_FILE_OPENED_NONDIRECT 32825
#define IDS_UNABLE_TO_CREATE_TEMPORARY_FILE 32826
#define IDS_UNABLE_TO_CREATE_NEW_FILE 32827
#define ID_INDICATOR_FILE_SIZE 32828
#define ID_INDICATOR_SELECTION_BEGIN 32829
#define ID_INDICATOR_SELECTION_LENGTH 32830
#define ID_INDICATOR_CURRENT_POS 32831
#define ID_INDICATOR_DUMMY 32832
#define ID_INDICATOR_SAMPLE_RATE 32833
#define ID_INDICATOR_SAMPLE_SIZE 32834
#define ID_INDICATOR_CHANNELS 32835
#define IDS_SOUND_CLIPPED 32836
#define IDS_SOUND_MAY_BE_CLIPPED 32837
#define IDS_M_UNABLE_TO_CREATE_UNDO 32838
#define IDS_REOPEN_IN_DIRECT_MODE 32840
#define IDS_RELOAD_COMPRESSED_FILE 32841
#define ID_INDICATOR_SCALE 32842
#define IDS_UNABLE_TO_OPEN_WMA_FILE 32843
#define IDS_CANT_OPEN_WMA_DECODER 32844
#define IDS_CANT_COMMIT_FILE_DATA 32845
#define IDS_UNABLE_TO_RENAME_TEMPORARY_FILE 32846
#define IDS_UNABLE_TO_REOPEN_AS 32847
#define IDS_DIRECTORY_ACCESS_DENIED 32848
#define IDS_DIRECTORY_NOT_FOUND 32849
#define IDC_BUTTON_SIN 32850
#define IDC_BUTTON_COS 32851
#define IDC_BUTTON_SINH 32852
#define IDC_BUTTON_COSH 32853
#define IDC_BUTTON_TAN 32854
#define IDC_BUTTON_TANH 32855
#define IDC_BUTTON_EXP 32856
#define IDC_BUTTON_LN 32857
#define IDC_BUTTON_EXP10 32858
#define IDC_BUTTON_LOG10 32859
#define IDC_BUTTON_SQRT 32860
#define IDC_BUTTON_ABS 32861
#define IDC_BUTTON_INT 32862
#define IDC_BUTTON_POW 32863
#define IDC_BUTTON_NOISE 32864
#define IDC_BUTTON_PI 32865
#define IDC_BUTTON_T 32866
#define IDC_BUTTON_LC_T 32867
#define IDC_BUTTON_DT 32868
#define IDC_BUTTON_LC_DT 32869
#define IDC_BUTTON_DN 32870
#define IDC_BUTTON_LC_DN 32871
#define IDC_BUTTON_F 32872
#define IDC_BUTTON_LC_F 32873
#define IDC_BUTTON_WAVE 32874
#define IDC_BUTTON_PLUS 32875
#define IDC_BUTTON_MINUS 32876
#define IDC_BUTTON_MULTIPLY 32877
#define IDC_BUTTON_DIVIDE 32878
#define IDC_BUTTON_MODULE 32879
#define IDC_BUTTON_AND 32880
#define IDC_BUTTON_OR 32881
#define IDC_BUTTON_XOR 32882
#define IDC_BUTTON_INVERSE 32883
#define IDC_BUTTON_N 32884
#define IDC_BUTTON_LC_N 32885
#define IDC_BUTTON_15 32886
#define IDC_BUTTON_LC_F1 32886
#define IDC_BUTTON_2 32887
#define IDC_BUTTON_LC_F2 32887
#define IDC_BUTTON_3 32888
#define IDC_BUTTON_LC_F3 32888
#define IDC_BUTTON_4 32889
#define IDC_BUTTON_INSERT_EXPRESSION 32890
#define IDC_BUTTON_5 32890
#define IDC_COMBO_SAVED_EXPRESSIONS 32891
#define IDC_BUTTON_6 32891
#define IDC_BUTTON_7 32892
#define IDC_BUTTON_8 32893
#define IDS_MONO_TO_STEREO 32894
#define IDS_OVERWRITE_SHARING_VIOLATION 32895
#define IDS_OVERWRITE_ACCESS_DENIED 32896
#define IDS_UNKNOWN_FILE_CREATION_ERROR 32897
#define IDS_OVERWRITE_ACCESS_DENIED_TEMP 32898
#define IDS_UNKNOWN_FILE_CREATION_ERROR_TEMP 32899
#define ID_VIEW_AMPL_RULER_PERCENT 32900
#define IDS_COPY_OF 32901
#define IDS_FILE_MAY_GET_TOO_BIG 32902
#define IDS_WRONG_NEW_FILE_LENGTH 32903
#define IDS_CANT_DECOMPRESS_FILE 32904
#define IDS_ERROR_WHILE_DECOMPRESSING_FILE 32905
#define IDS_SHOULD_RELOAD_COMPRESSED_FILE 32906
#define IDS_OPTIONS_CAPTION 32907
#define IDS_ALL_SAMPLE_DATA 32908
#define IDS_BEGIN_OF_SAMPLE 32909
#define IDS_CURRENT_SELECTION 32910
#define IDS_END_OF_SAMPLE 32911
#define IDS_FROM_BEGIN_TO_CURSOR 32912
#define IDS_FROM_CURSOR_TO_END 32913
#define IDS_CURSOR 32914
#define IDS_EQUALIZER_FILE_FILTER 32915
#define IDS_EQUALIZER_SAVE_TITLE 32916
#define IDS_EQUALIZER_LOAD_TITLE 32917
#define IDS_EXPRESSIONS_FILE_FILTER 32918
#define IDS_EXPRESSIONS_SAVE_TITLE 32919
#define IDS_EXPRESSIONS_LOAD_TITLE 32920
#define IDS_CANNOT_OPEN_WMA 32921
#define IDS_FILTER_FILE_FILTER 32924
#define IDS_FILTER_SAVE_TITLE 32925
#define IDS_FILTER_LOAD_TITLE 32926
#define IDS_RAW_16BIT_LSB 32927
#define IDS_RAW_16BIT_MSB 32928
#define IDS_RAW_8BITS_ALAW 32929
#define IDS_RAW_8BITS_ULAW 32930
#define IDS_RAW_8BITS_PCM 32931
#define IDS_ENCODER 32932
#define IDS_FORMAT 32933
#define IDS_MONO 32934
#define IDS_STEREO 32935
#define IDS_LAMEENC_FORMAT 32936
#define IDS_OPEN_SAVED_FILE_COPY 32937
#define IDS_OPEN_SAVED_FILE_COPY_NONDIRECT 32938
#define IDS_STRING_UNABLE_TO_CONVERT 32939
#define IDS_SAVE_COPY_AS_TITLE 32940
#define IDS_PLAYLIST_FILE_FILTER 32941
#define IDS_HTML_FILE_FILTER 32942
#define IDS_PLAYLIST_SAVE_TITLE 32943
#define IDS_HTML_SAVE_TITLE 32944
#define IDS_TRACK_NAME_ALREADY_EXISTS 32945
#define IDS_NO_DISK_IN_CD_DRIVE 32946
#define IDS_DATA_TRACK 32947
#define IDS_TRACK_NUM_FORMAT 32948
#define IDS_TRACK_NAME 32949
#define IDS_LENGTH 32950
#define IDS_WRONG_DIRECTORY_NAME 32951
#define IDS_DIRECTORY_CREATE_PROMPT 32952
#define IDS_DIRECTORY_CREATE_ACCESS_DENIED 32953
#define IDS_UNABLE_TO_CREATE_DIRECTORY 32954
#define IDS_UNABLE_TO_CREATE_DIRECTORY_ACCESSDENIED 32955
#define IDS_CD_READING_ERROR_FORMAT 32956
#define IDS_NO_CD_DRIVES 32957
#define IDS_CD_DRIVE_INACCESSIBLE 32958
#define IDS_CD_DRIVE_BUSY 32959
#define IDS_WMA_ENCODER_NOT_AVILABLE 32960
#define IDS_REPLACEYESNO 32961
#define IDS_FILE_READ_ERROR 32962
#define IDS_SUFFIX_READ_ONLY 32963
#define IDS_SUFFIX_DIRECT 32964
#define IDS_STATUS_STRING16BIT 32965
#define IDS_STATUS_STRING_STEREO 32966
#define IDS_STATUS_OPERATION_PROMPT_COMPLETED 32967
#define IDS_PEAK_SCAN_STATUS_PROMPT 32968
#define IDS_PEAK_SCAN_OPERATION_NAME 32969
#define IDS_PLAYBACK_STATUS_PROMPT 32970
#define IDS_PLAYBACK_OPERATION_NAME 32971
#define IDS_PLAYBACK_PAUSED_STATUS 32972
#define IDS_PLAYBACK_STOPPED_STATUS 32973
#define IDS_OPERATION_PREFIX_UNDO 32974
#define IDS_OPERATION_PREFIX_REDO 32975
#define IDS_STATUS_PREFIX_UNDOING 32976
#define IDS_STATUS_PREFIX_REDOING 32977
#define IDS_STATUS_PROMPT_CHANGE_LENGTH 32978
#define IDS_OPERATION_NAME_CHANGE_LENGTH 32979
#define IDS_STATUS_PROMPT_EXPANDING_FILE 32980
#define IDS_STATUS_PROMPT_SHRINKING_FILE 32981
#define IDS_STATUS_PROMPT_INSERTING_DATA 32982
#define IDS_INPUT_NAME_VOLUME_CHANGE 32983
#define IDS_INPUT_NAME_TARGET_LEVEL 32984
#define IDS_INPUT_NAME_TEMPO_CHANGE 32985
#define IDS_INPUT_NAME_LF_SUPPRESSION_RANGE 32986
#define IDS_INPUT_NAME_DIFFERENTIAL_SUPPRESSION_RANGE 32987
#define IDS_INPUT_NAME_ATTACK_RATE 32988
#define IDS_INPUT_NAME_CLICK_TO_NOISE_RATE 32989
#define IDS_INPUT_NAME_ENVELOP_DECAY_RATE 32990
#define IDS_FILE_FILTER_TXT 32991
#define IDS_INPUT_NAME_NOISE_REDUCTION 32992
#define IDS_INPUT_NAME_NOISE_VS_CONTINUOUS 32993
#define IDS_INPUT_NAME_NOISE_FLOOR_HIGH 32994
#define IDS_INPUT_NAME_NOISE_FLOOR_LOW 32995
#define IDS_INPUT_NAME_NOISE_SUPPRESSION_AGGR 32996
#define IDS_INPUT_NAME_TONE_OVER_NOISE 32997
#define IDS_INPUT_NAME_FREQUENCY 32998
#define IDS_INPUT_NAME_NEAR_MASK_DISTANCE_HIGH 32999
#define IDS_INPUT_NAME_NEAR_MASK_DISTANCE_LOW 33000
#define IDS_INPUT_NAME_NEAR_MASK_TIME_HIGH 33001
#define IDS_INPUT_NAME_NEAR_MASK_TIME_LOW 33002
#define IDS_INPUT_NAME_HEAR_MASK_COEFF 33003
#define IDS_INPUT_NAME_FAR_MASK_LEVEL 33003
#define IDS_TAB_TITLE_FUNCTIONS_AND_OPS 33004
#define IDS_TAB_TITLE_OPERANDS 33005
#define IDS_TAB_TITLE_SAVED_EXPRESSIONS 33006
#define IDS_CDGRAB_FOLDER_DIALOG_TITLE 33007
#define IDS_CDGRAB_DEFAULT_SPEED 33008
#define IDS_TEMP_FOLDER_DIALOG_TITLE 33009
#define IDS_MSG_GROUP_CANT_BE_ALL_EXPRESSION 33010
#define IDS_MP3_FILE_TYPE 33011
#define IDS_MP3_FILE_FORMAT 33012
#define IDS_WMA_FILE_TYPE 33013
#define IDS_WMA_FILE_FORMAT 33014
#define IDS_MP3_FORMAT_STR 33015
#define IDS_WAV_FILE_TYPE 33016
#define IDS_UNKNOWN_FILE_TYPE_FORMAT 33017
#define IDS_MRU_LIST_RO_SUFFIX 33018
#define IDS_MRU_LIST_DIRECT_SUFFIX 33019
#define IDS_READING_CD_TRACK_STATUS_PROMPT 33020
#define IDS_READING_CD_TRACK_OPERATION_NAME 33021
#define IDS_SELECTION_STRING_FORMAT 33022
#define IDS_SELECTION_STRING_FORMAT_STEREO 33022
#define IDS_CHANNELS_STRING_FORMAT 33023
#define IDS_CHANNELS_STRING_FORMAT_MONO 33023
#define IDS_COPY_TO_FILE_STATUS_PROMPT_FORMAT 33024
#define IDS_COPY_TO_CLIPBOARD_STATUS_PROMPT 33025
#define IDS_PASTE_FROM_FILE_STATUS_PROMPT 33026
#define IDS_PASTE_STATUS_PROMPT 33027
#define IDS_PASTE_OPERATION_NAME 33028
#define IDS_RESAMPLE_CLIPBOARD_STATUS_PROMPT 33029
#define IDS_CUT_STATUS_PROMPT 33030
#define IDS_CUT_OPERATION_NAME 33031
#define IDS_DELETING_SELECTION_STATUS_PROMPT 33032
#define IDS_DELETE_OPERATION_NAME 33033
#define IDS_LOADING_COMPRESSED_FILE_STATUS_PROMPT 33034
#define IDS_SAVE_FILE_COMMIT_STATUS_PROMPT 33035
#define IDS_SAVING_FILE_STATUS_PROMPT 33036
#define IDS_SAVING_FILE_COPY_STATUS_PROMPT 33037
#define IDS_FILE_SAVE_OPERATION_NAME 33038
#define IDS_SAVING_FILE_WITH_CONVERSION_STATUS 33039
#define IDS_FILE_SAVE_CONVERT_OPERATION_NAME 33040
#define IDS_MP3_SAVE_STATUS_PROMPT 33041
#define IDS_MP3_SAVE_OPERATION_NAME 33042
#define IDS_WMA_SAVE_STATUS_PROMPT 33043
#define IDS_WMA_SAVE_OPERATION_NAME 33044
#define IDS_RAW_SAVE_STATUS_PROMPT 33045
#define IDS_RAW_SAVE_OPERATION_NAME 33046
#define IDS_SAMPLE_RATE_CHANGE_OPERATION_NAME 33047
#define IDS_CHANNELS_CHANGE_OPERATION_NAME 33048
#define IDS_CHANNELS_CHANGE_STATUS_PROMPT 33049
#define IDS_VOLUME_CHANGE_STATUS_PROMPT 33050
#define IDS_VOLUME_CHANGE_OPERATION_NAME 33051
#define IDS_DC_ADJUST_STATUS_PROMPT 33052
#define IDS_DC_ADJUST_OPERATION_NAME 33053
#define IDS_DC_SCAN_STATUS_PROMPT 33054
#define IDS_INSERT_SILENCE_STATUS_PROMPT 33055
#define IDS_INSERT_SILENCE_OPERATION_NAME 33056
#define IDS_MUTING_STATUS_PROMPT 33057
#define IDS_MUTING_OPERATION_NAME 33058
#define IDS_NORMALIZE_VOLUME_STATUS_PROMPT 33059
#define IDS_NORMALIZE_VOLUME_OPERATION_NAME 33060
#define IDS_MAX_SCAN_STATUS_PROMPT 33061
#define IDS_RESAMPLE_STATUS_PROMPT 33062
#define IDS_RESAMPLE_OPERATION_NAME 33063
#define IDS_SCANNING_STATISTICS_STATUS_PROMPT 33064
#define IDS_INVERSION_STATUS_PROMPT 33065
#define IDS_INVERSION_OPERATION_NAME 33066
#define IDS_EXPRESSION_STATUS_PROMPT 33067
#define IDS_EXPRESSION_OPERATION_NAME 33068
#define IDS_LOAD_RAW_STATUS_PROMPT 33069
#define IDS_LOAD_COMPRESSED_STATUS_PROMPT 33070
#define IDS_LOAD_FILE_STATUS_PROMPT 33070
#define IDS_INTERPOLATE_OPERATION_NAME 33071
#define IDS_ULF_REDUCTION_STATUS_PROMPT 33072
#define IDS_ULF_REDUCTION_OPERATION_NAME 33073
#define IDS_DECLICK_STATUS_PROMPT 33074
#define IDS_DECLICK_OPERATION_NAME 33075
#define IDS_DENOISE_STATUS_PROMPT 33076
#define IDS_DENOISE_OPERATION_NAME 33077
#define IDS_EQUALIZER_STATUS_PROMPT 33078
#define IDS_EQUALIZER_OPERATION_NAME 33079
#define IDS_CHANNELS_SWAP_STATUS_PROMPT 33080
#define IDS_CHANNELS_SWAP_OPERATION_NAME 33081
#define IDS_FILTER_STATUS_PROMPT 33082
#define IDS_FILTER_OPERATION_NAME 33083
#define IDS_REVERSE_STATUS_PROMPT 33084
#define IDS_STRING33085 33085
#define IDS_REVERSE_OPERATION_NAME 33085
#define IDS_STAT_DIALOG_FILE_NAME_FORMAT 33086
#define IDS_STRING33087 33087
#define IDS_ALL_EXPRESSIONS_GROUP 33087
#define IDS_LEFT 33088
#define IDS_STRING33089 33089
#define IDS_RIGHT 33089
#define IDS_DECIBEL 33090
#define IDS_INPUT_NAME_NORMALIZE_LEVEL 33091
#define IDS_PERCENT_CHAR 33092
#define IDS_HERTZ 33093
#define IDS_MILISECOND 33094
#define IDS_INPUT_NAME_FREQUENCY_ARGUMENT 33095
#define IDS_INPUT_NAME_FREQUENCY_ARGUMENT2 33096
#define IDS_INPUT_NAME_FREQUENCY_ARGUMENT3 33097
#define IDS_INPUT_NAME_FREQUENCY_ARGUMENT4 33098
#define IDS_INPUT_NAME_FREQUENCY_ARGUMENT1 33098
#define IDS_MARKER_REGION_CHANGE 33099
#define IDS_SAVE_SELECTION_TITLE 33100
#define IDS_CONTINUE_QUESTION 33101
#define IDS_STRING_READ_ONLY_PROMPT 33102
#define IDS_STRING_DIRECT_MODE_PROMPT 33103
#define IDS_OPEN_RECENT_FILE_PROMPT_FORMAT 33104
#define IDS_STATUS_OPERATION_PROMPT_STOPPED 33105
#define IDS_STATUS_OPERATION_PROMPT_FAILED 33106
#define IDS_FILTER_FILE_NOISE_REDUCTION 33107
#define IDS_FILTER_FILE_CLICK_REMOVAL 33108
#define IDS_NOISE_REDUCTION_SAVE_TITLE 33109
#define IDS_NOISE_REDUCTION_LOAD_TITLE 33110
#define IDS_CLICK_REMOVAL_SAVE_TITLE 33111
#define IDS_NOISE_REDUCTION_LOAD_TITLE2 33112
#define IDS_CLICK_REMOVAL_LOAD_TITLE 33112
#define IDS_FILE_LIST_NAME_COLUMN 33113
#define IDS_FILE_LIST_BEGIN_COLUMN 33114
#define IDS_FILE_LIST_END_COLUMN 33115
#define IDS_FILE_LIST_LENGTH_COLUMN 33116
#define IDS_SELECT_SAVE_TO_FOLDER 33117
#define IDS_NEW_FILE_SEGMENT_NAME 33118
#define IDS_SAVING_FILE_PART 33119
#define IDS_STRING_SPLIT_TO_FILES_OPERATION 33120
#define IDS_CHANNELS_SHIFT_WARNING_PROMPT 33121
#define IDS_SEGMENT_NAME_FROM_MARKERS 33122
#define IDS_MORE_IN_EFFECT 33123
#define IDS_MORE_CLICK_SETTINGS_IN_EFFECT 33123
#define IDS_RADIO_OPEN_AS_READ_ONLY 33124
#define IDS_STATUS_STRING32BIT 33125
#define IDS_STATUS_STRING8BIT 33126
#define IDS_STATUS_STRING24BIT 33127
#define IDS_STATUS_STRING_FLOAT32 33128
#define IDS_STATUS_STRING_FLOAT64 33129
#define IDS_GILBERT_TRANSFORM_STATUS_PROMPT 33130
#define IDS_NORMALIZE_VOLUME_OPERATION_NAME2 33131
#define IDS_GILBERT_TRANSFORM_OPERATION_NAME 33131
#define IDS_STATISTICS_FORMAT_LINE1 33132
#define IDS_STATISTICS_FORMAT_LINE2 33133
#define IDS_STATISTICS_FORMAT_LINE3 33134
#define IDS_STATISTICS_FORMAT_LINE4 33135
#define IDS_STATISTICS_FORMAT_LINE5 33136
#define IDS_STATISTICS_FORMAT_LINE6 33137
#define IDS_STATISTICS_FORMAT_LINE7 33138
#define IDS_STATISTICS_FORMAT_LINE8 33139
#define IDS_STATISTICS_FORMAT_LINE9 33140
#define IDS_STATISTICS_FORMAT_LINE10 33141
#define IDS_STATISTICS_FORMAT_LINE11 33142
#define IDS_STATISTICS_FORMAT_LINE_CHANNEL 33143
#define ID_FILE_PROPERTIES 40000
#define ID_VIEW_ZOOMVERT_NORMAL 40001
#define ID_VIEW_ZOOMIN_HOR_FULL 40002
#define ID_EDIT_SELECTION 40003
#define ID_PROCESS_NORMALIZE 40004
#define ID_PROCESS_CHANGEVOLUME 40005
#define ID_PROCESS_DCOFFSET 40006
#define ID_PROCESS_RESAMPLE 40007
#define ID_PROCESS_MUTE 40008
#define ID_PROCESS_INSERTSILENCE 40009
#define ID_FILE_REOPENFOREDITING 40010
#define ID_EDIT_REVERTALLCHANGES 40011
#define ID_EDIT_UNDO_ALL_CHANGES 40012
#define ID_STOP_ALL 40013
#define ID_PLAY_AND_STOP 40014
#define ID_EDIT_MORE_UNDO_REDO 40015
#define ID_EDIT_CHANNELS_LOCK 40016
#define ID_SAMPLERATE_7200 40023
#define ID_SAMPLERATE_8000 40024
#define ID_SAMPLERATE_11025 40025
#define ID_SAMPLERATE_16000 40026
#define ID_SAMPLERATE_22050 40027
#define ID_SAMPLERATE_32000 40028
#define ID_SAMPLERATE_44100 40029
#define ID_SAMPLERATE_48K 40030
#define ID_SAMPLERATE_96K 40031
#define ID_SAMPLERATE_CUSTOM 40032
#define ID_CHANNELS_MONO 40033
#define ID_CHANNELS_STEREO 40034
#define ID_SAMPLE_16BIT 40035
#define ID_SAMPLE_8BIT 40036
#define ID_FFT_BANDS_32 40037
#define ID_FFT_BANDS_64 40038
#define ID_FFT_BANDS_128 40039
#define ID_FFT_BANDS_256 40040
#define ID_FFT_BANDS_512 40041
#define ID_FFT_BANDS_1024 40042
#define ID_FFT_BANDS_2048 40043
#define ID_FFT_BANDS_4096 40044
#define ID_FFT_BANDS_8192 40045
#define ID_FFT_BANDS_16384 40046
#define ID_VIEW_STATUS_SAMPLES 40047
#define ID_VIEW_STATUS_HHMMSS 40048
#define ID_VIEW_STATUS_SECONDS 40049
#define ID_FILE_STATISTICS 40050
#define ID_PROCESS_INVERT 40051
#define ID_VIEW_OUTLINE 40052
#define ID_VIEW_TIMERULER 40053
#define ID_VIEW_TIME_RULER 40055
#define ID_VIEW_VERTICAL_RULER 40056
#define ID_VIEW_RESCAN_PEAKS 40057
#define ID_PROCESS_SYNTHESIS_EXPRESSIONEVALUATION 40058
#define ID_PROCESS_SYNTHESIS_EXPRESSION_EVALUATION 40059
#define ID_VIEW_ZOOM_SELECTION 40060
#define ID_TOOLS_OPTIONS 40062
#define ID_TOOLS_INTERPOLATE 40063
#define ID_VIEW_SPECTRUMSECTION 40066
#define ID_VIEW_SS_ZOOMINHOR2 40067
#define ID_VIEW_SS_ZOOMOUTHOR2 40068
#define ID_VIEW_SS_SHOW_NOISE_THRESHOLD 40069
#define ID_VIEW_SS_ZOOMINVERT 40070
#define ID_VIEW_SS_ZOOMOUTVERT 40071
#define ID_VIEW_HOR_SCALE_1 40072
#define ID_VIEW_HOR_SCALE_2 40073
#define ID_VIEW_HOR_SCALE_4 40074
#define ID_VIEW_HOR_SCALE_8 40075
#define ID_VIEW_HOR_SCALE_16 40076
#define ID_VIEW_HOR_SCALE_32 40077
#define ID_VIEW_HOR_SCALE_64 40078
#define ID_VIEW_HOR_SCALE_128 40079
#define ID_VIEW_HOR_SCALE_256 40080
#define ID_VIEW_HOR_SCALE_512 40081
#define ID_VIEW_HOR_SCALE_1024 40082
#define ID_VIEW_HOR_SCALE_2048 40083
#define ID_VIEW_HOR_SCALE_4096 40084
#define ID_VIEW_HOR_SCALE_8192 40085
#define ID_TOOLS_CDGRAB 40086
#define ID_VIEW_HIDE_SPECTRUMSECTION 40087
#define ID_PROCESS_CHANNELS 40088
#define ID_FFT_WINDOW_SQUARED_SINE 40089
#define ID_FFT_WINDOW_SINE 40090
#define ID_FFT_WINDOW_HAMMING 40091
#define ID_EDIT_ENABLE_UNDO 40094
#define ID_EDIT_ENABLE_REDO 40095
#define ID_EDIT_CLEAR_UNDO 40096
#define ID_EDIT_CLEAR_REDO 40097
#define ID_VIEW_SHOW_CROSSHAIR 40098
#define ID_VIEW_SS_ZOOMVERT_NORMAL 40099
#define ID_PROCESS_EQUALIZER 40100
#define ID_VIEW_INCREASE_FFT_BANDS 40105
#define ID_VIEW_DECREASE_FFT_BANDS 40106
#define ID_PROCESS_SWAPCHANNELS 40107
#define ID_PROCESS_FILTER 40108
#define ID_FILE_BATCHCONVERSION 40109
#define ID_CDGRAB_SETCHECK 40110
#define ID_CDGRAB_UNCHECK 40111
#define ID_PROCESS_REVERSE 40114
#define ID_GOTO_MARKER 40116
#define ID_DELETE_MARKER 40118
#define ID_MOVE_MARKER_TO_CURRENT 40120
#define ID_EDIT_MARKER 40123
#define ID_SELECT_REGION 40125
#define ID_EDIT_WAVE_MARKER 40127
#define ID_EDIT_MARKER_REGION 40128
#define ID_EDIT_WAVE_REGION 40131
#define ID_SAVE_SAVESELECTIONAS 40132
#define ID_VIEW_ZOOMPREVIOUS 40138
#define ID_VIEW_STATUS_HHMMSSFF 40140
#define ID_VIEW_RULER_HHMMSSFF 40141
#define ID_TOOLS_SYNTHESIS 40142
#define ID_SAVE_SPLIT_TO_FILES 40144
#define ID_EDIT_INSERTFROMFILE 40145
#define ID_FFT_WINDOW_NUTTALL 40147
#define ID_EDIT_FADE 40151
#define ID_EDIT_FADE_IN 40154
#define ID_EDIT_FADE_OUT 40155
#define ID__MINIMIZE 40156
#define ID_VIEW_TOGGLE_MINIMIZE_0 40157
#define ID_VIEW_MINIMIZE_0 40158
#define ID_VIEW_MINIMIZE_1 40159
#define ID_VIEW_MINIMIZE_2 40160
#define ID_VIEW_MINIMIZE_3 40161
#define ID_VIEW_MINIMIZE_4 40162
#define ID_VIEW_MINIMIZE_5 40163
#define ID_VIEW_MINIMIZE_6 40164
#define ID_VIEW_MINIMIZE_7 40165
#define ID_VIEW_MINIMIZE_8 40166
#define ID_VIEW_MINIMIZE_9 40167
#define ID_VIEW_MINIMIZE_10 40168
#define ID_VIEW_MINIMIZE_11 40169
#define ID_VIEW_MINIMIZE_12 40170
#define ID_VIEW_MINIMIZE_13 40171
#define ID_VIEW_MINIMIZE_14 40172
#define ID_VIEW_MINIMIZE_15 40173
#define ID_VIEW_MINIMIZE_16 40174
#define ID_VIEW_MINIMIZE_17 40175
#define ID_VIEW_MINIMIZE_18 40176
#define ID_VIEW_MINIMIZE_19 40177
#define ID_VIEW_MINIMIZE_20 40178
#define ID_VIEW_MINIMIZE_21 40179
#define ID_VIEW_MINIMIZE_22 40180
#define ID_VIEW_MINIMIZE_23 40181
#define ID_VIEW_MINIMIZE_24 40182
#define ID_VIEW_MINIMIZE_25 40183
#define ID_VIEW_MINIMIZE_26 40184
#define ID_VIEW_MINIMIZE_27 40185
#define ID_VIEW_MINIMIZE_28 40186
#define ID_VIEW_MINIMIZE_29 40187
#define ID_VIEW_MINIMIZE_30 40188
#define ID_VIEW_MINIMIZE_31 40189
#define ID_VIEW_MAXIMIZE_0 40190
#define ID_VIEW_MAXIMIZE_1 40191
#define ID_VIEW_MAXIMIZE_2 40192
#define ID_VIEW_MAXIMIZE_3 40193