-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathresource.h
More file actions
1136 lines (1135 loc) · 49.6 KB
/
Copy pathresource.h
File metadata and controls
1136 lines (1135 loc) · 49.6 KB
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 Developer Studio generated include file.
// Used by EASYB.rc
//
#define ID_REPLAY_HAND 2
#define ID_TELLMEMORE 2
#define ID_REBID_HAND 3
#define ID_REDEAL 4
#define ID_SAVE_GAME_RECORD 4
#define ID_CANCEL 5
#define ID_MORE 6
#define IDHELP 9
#define IDC_AUTO_TRAIN 10
#define IDD_ABOUTBOX 100
#define IDD_ROUND_FINISHED 101
#define IDR_MAINFRAME 128
#define IDS_APPTITLE 129
#define IDR_FEEDBACK 129
#define IDS_MAJORVERSION 130
#define IDD_SPLASH 130
#define IDS_SECONDARY_COPYRIGHT 130
#define IDS_MINORVERSION 131
#define IDS_BUILD 131
#define IDS_AUTHOR_EMAIL 131
#define IDS_REVISION 132
#define IDR_PBN_TYPE 132
#define IDS_BUILDSTATUS 133
#define IDS_BUILDDATE 134
#define IDR_MAINFRAME_OLD 135
#define ID_VIEW_BIDDING_HISTORY 150
#define ID_VIEW_PLAY_HISTORY 151
#define ID_SHOW_STATUS 152
#define IDB_LOADBMP 193
#define IDB_BRIDGE_BITMAP0 195
#define IDB_DEFAULT_BACKGROUND 196
#define IDD_FEEDBACK 197
#define IDD_WHOWON 198
#define IDC_CURSOR_GRAB 199
#define IDC_CURSOR_SOUTH 201
#define IDC_CURSOR_NORTH 202
#define IDD_DISPLAY_OPTIONS 202
#define IDC_CURSOR_WEST 203
#define IDD_DIRECT_ASSIGN 203
#define IDD_CARD_LAYOUT 203
#define IDC_CURSOR_EAST 204
#define IDC_CURSOR_EAST_INVALID 205
#define IDC_CURSOR_NORTH_INVALID 206
#define IDC_CURSOR_WEST_INVALID 207
#define IDD_BID 207
#define IDC_CURSOR_SOUTH_INVALID 208
#define IDD_ANALYSIS 208
#define IDD_FILE_MYOPEN 209
#define IDC_CURSOR_EXCHANGE 209
#define IDD_BIDDING_HISTORY 213
#define IDD_HISTORY 213
#define IDD_EDIT_DIALOG 213
#define IDD_GAME_OPTIONS_1 214
#define IDD_FILE_COMMENTS 215
#define IDR_ANALYSIS 216
#define IDR_BIDDING_HISTORY 217
#define IDR_PLAY_HISTORY 218
#define IDD_PRINT_OPTIONS 218
#define IDB_BITMAP1 220
#define IDB_TITLE1 221
#define IDB_TITLE2 222
#define IDD_FILE_OPTIONS 228
#define IDD_FILE_SAVE_OPTIONS 228
#define IDP_STATUS_FEEDBACK 230
#define IDD_BIDDING_FINISHED 233
#define IDB_INFORMATION_ICON 235
#define IDB_BITMAP2 236
#define IDD_COMMOPEN_EXTENSION 239
#define IDD_INTRO_WINDOW 240
#define IDC_ANALYSIS_TIME 241
#define IDB_INTRO_BITMAP 241
#define IDC_SPIN_ANALYSIS_TIME 242
#define IDC_ENABLE_GIB 243
#define IDC_EDIT_GIB_PATH 244
#define IDB_SUITS_IMAGELIST 244
#define IDC_BROWSE 245
#define IDD_GIB_ACTIVE 246
#define IDC_ENABLE_GIB_DEFENDER 246
#define IDC_NEW 246
#define IDR_TIMER 247
#define IDD_GAME_REVIEW 247
#define IDC_ETA_MESSAGE 248
#define IDI_REVIEW_NEXT 249
#define IDI_REVIEW_PREV 250
#define IDD_SCORE 251
#define IDI_REVIEW_LAST 251
#define IDB_TITLE 252
#define IDP_STATUS_CARD_LOCATIONS 252
#define IDI_REVIEW_FIRST 252
#define IDP_STATUS_GIB_MONITOR 253
#define IDI_REVIEW_NEXT_GAME 253
#define IDP_STATUS_PLAY_PLAN 254
#define IDI_REVIEW_PREV_GAME 254
#define IDP_STATUS_HOLDINGS 255
#define IDI_REVIEW_LAST_GAME 255
#define IDI_REVIEW_FIRST_GAME 256
#define IDD_SELECT_HAND 256
#define IDI_CONTRACT_1CLUB 257
#define IDI_CONTRACT_1DIAMOND 258
#define IDI_CONTRACT_1HEART 259
#define IDI_CONTRACT_1SPADE 260
#define IDI_CONTRACT_1NT 261
#define IDR_MAINFRAME_TOOLBAR 261
#define IDI_CONTRACT_2CLUB 262
#define IDI_CONTRACT_2DIAMOND 263
#define IDR_TOOLBAR_DROPDOWN 263
#define IDD_PASSED_HAND 263
#define IDR_SWAP_CARDS 263
#define IDI_CONTRACT_2HEART 264
#define IDI_CONTRACT_2SPADE 265
#define IDR_TOOLBAR_HIDDEN_BUTTONS 265
#define IDI_CONTRACT_2NT 266
#define IDI_CONTRACT_3CLUB 267
#define IDI_CONTRACT_3DIAMOND 268
#define IDI_CONTRACT_3HEART 269
#define IDI_CONTRACT_3SPADE 270
#define IDI_CONTRACT_3NT 271
#define IDI_CONTRACT_4CLUB 272
#define IDR_SECONDARY_TOOLBAR 272
#define IDI_CONTRACT_4DIAMOND 273
#define IDI_CONTRACT_4HEART 274
#define IDB_ABOUT_BRIDGE_SCENE 274
#define IDI_CONTRACT_4SPADE 275
#define IDI_CONTRACT_4NT 276
#define IDI_CONTRACT_5CLUB 277
#define IDI_CONTRACT_5DIAMOND 278
#define IDI_CONTRACT_5HEART 279
#define IDI_CONTRACT_5SPADE 280
#define IDI_CONTRACT_5NT 281
#define IDI_CONTRACT_6CLUB 282
#define IDI_CONTRACT_6DIAMOND 283
#define IDI_CONTRACT_6HEART 284
#define IDI_CONTRACT_6SPADE 285
#define IDI_CONTRACT_6NT 286
#define IDI_CONTRACT_7CLUB 287
#define IDI_CONTRACT_7DIAMOND 288
#define IDI_CONTRACT_7HEART 289
#define IDI_CONTRACT_7SPADE 290
#define IDI_CONTRACT_7NT 291
#define IDI_TAGS_EXPAND 292
#define IDI_TAGS_COLLAPSE 293
#define IDR_ANALYSIS_SMALL 294
#define IDI_MB_ALERT 295
#define IDI_MB_INFORMATION 296
#define IDC_CURSOR_HAND 297
#define IDI_SUIT_CLUB 297
#define IDC_CURSOR_HAND2 298
#define IDI_SUIT_DIAMOND 298
#define IDD_FILE_PROPERTIES 299
#define IDI_SUIT_HEART 299
#define IDC_CURSOR_HAND_ILLEGAL 299
#define IDD_DEAL_NUMBER 300
#define IDI_SUIT_SPADE 300
#define IDC_CURSOR_PLAY_SOUTH 300
#define IDC_CURSOR_PLAY_WEST 301
#define IDB_WINNERS 301
#define IDI_SUIT_NT 301
#define IDD_BID_SMALL 301
#define IDC_CURSOR_PLAY_NORTH 302
#define IDB_LOSERS 302
#define IDI_LEVEL_1 302
#define IDW_INTRO_1 302
#define IDC_CURSOR_PLAY_EAST 303
#define IDI_LEVEL_2 303
#define IDP_STATUS_ANALYSES 303
#define IDI_LEVEL_3 304
#define IDB_CTLBAR_IMAGELIST 304
#define IDI_LEVEL_4 305
#define IDB_ABOUT_BRIDGE_SCENE_2 305
#define IDI_LEVEL_5 306
#define IDD_NEURAL_NET_OUTPUT 306
#define IDI_LEVEL_6 307
#define IDR_HISTORY_POPUP 307
#define IDI_LEVEL_7 308
#define IDR_ANALYSIS_POPUP 308
#define IDD_AUTOTRAIN_STATUS 308
#define IDD_NNET_SIZE 309
#define IDD_AUTO_HINT 310
#define IDR_CLOSE 311
#define IDR_DEAL_GAME_HAND 312
#define IDI_PLAYER_BIDPROMPT 312
#define IDR_DEAL_SLAM 313
#define IDI_COMPUTER_BIDPROMPT 313
#define IDR_PLAY_TOOLBAR 314
#define IDR_TESTING_TOOLBAR 314
#define IDR_HISTORY_CONTROLBAR 317
#define IDR_STATUS_CONTROLBAR 318
#define IDC_CURSOR_CLICK 319
#define IDD_TEST_PLAY 327
#define IDD_PASSED_HAND_SIMPLE 328
#define IDB_PORTRAIT 332
#define IDD_SCREEN_TOO_SMALL 333
#define IDC_NUMCARDS 1000
#define IDC_CARD_POINTS 1001
#define IDC_TOTAL_POINTS 1002
#define IDC_DONE 1002
#define IDC_BID_HINT 1003
#define IDC_HINT_TEXT 1006
#define IDC_AUTO_SHOW 1007
#define IDC_BALANCE_HANDS 1008
#define IDC_CURRENT_HANDS 1009
#define IDC_ENABLE_DEAL_NUMBERING 1009
#define IDC_INITIAL_HANDS 1010
#define IDC_BIDDING_HISTORY 1011
#define IDC_PLAY_HISTORY 1012
#define IDC_FILE_COMMENTS 1013
#define IDC_RADIO_MAJORS 1014
#define IDC_RADIO_TWOBIDS 1015
#define IDC_RADIO_AFTER_1NT 1016
#define IDC_RADIO_2COPEN20 1016
#define IDC_CUE_BIDS 1017
#define IDC_RADIO_2COPEN21 1017
#define IDC_BLACKWOOD 1018
#define IDC_RADIO_2COPEN22 1018
#define IDC_GERBER 1019
#define IDC_RADIO_2COPEN23 1019
#define IDC_ACELESS_PENALTY 1020
#define IDC_LONG_SUIT 1021
#define IDC_4ACE_BONUS 1030
#define IDC_AUTO_JUMP_CURSOR 1031
#define IDC_RADIO99 1032
#define IDC_RADIO_35 1033
#define IDC_RADIO_3NT_RANGE 1034
#define IDC_PRINT_TO_FILE 1035
#define IDC_SPECIAL_CONVENTIONS 1036
#define IDC_RADIO_2NT_RANGE 1037
#define IDC_BIDDING_CONFIGURATION 1038
#define IDC_OPTIONS 1039
#define IDC_14_TPS_GS 1041
#define IDC_14_TPS_LS 1042
#define IDC_13_TPS_LS 1043
#define IDC_10_HCPS_6CS 1044
#define IDC_JACOBY 1045
#define IDC_STAYMAN 1046
#define IDC_TRIPLE_BUFFER 1047
#define IDC_ANIMATE_CARDS 1048
#define IDC_OFFSET_EW_DISPLAY 1049
#define IDC_SUPPRESS_STARTUP_ANIMATION 1050
#define IDC_SHOW_STARTUP_ANIMATION 1050
#define IDC_SUIT_DISPLAY_ORDER 1051
#define IDC_AUTO_START_BIDDING 1052
#define IDC_ENABLE_ANALYSIS_TRACING 1053
#define IDC_AUTO_SHOW_BID_HISTORY 1054
#define IDC_ENABLE_BIDDING_PAUSE 1054
#define IDC_AUTO_SHOW_PLAY_HISTORY 1055
#define IDC_4SUIT_TRANSFERS 1056
#define IDC_AUTO_HIDE_PLAY_HISTORY 1056
#define IDC_DIST_COUNTING 1057
#define IDC_AUTO_HIDE_BID_HISTORY 1057
#define IDC_SHOW_BID_HISTORY 1058
#define IDC_SHOW_PLAY_HISTORY 1059
#define IDC_SHOW_FILE_COMMENTS 1060
#define IDC_RADIO_2NT_AFTER_WEAK_2 1061
#define IDC_LIMIT_RAISES 1062
#define IDC_NEGATIVE_DOUBLES 1063
#define IDC_TAKEOUT_DOUBLES 1064
#define IDC_RADIO_1NT_RANGE 1065
#define IDC_10_HCPS_RBS_LM 1066
#define IDC_SHOW_LAYOUT_ON_EDIT 1067
#define IDC_PENALIZE_UNGUARDED_HONORS 1068
#define IDC_AUTOPLAY_LAST_CARD 1068
#define IDC_AUTOSHOW_NNET 1068
#define IDC_USE_MIRROR_CARDS 1069
#define IDC_AUTOPLAY_LAST_CARD2 1069
#define IDC_SPLINTER_BIDS 1070
#define IDC_SHOW_PASSED_HANDS 1070
#define IDC_EAST_DUMMY 1071
#define IDC_SOUTH_DUMMY 1072
#define IDC_SPIN_GRANULARITY 1072
#define IDC_SPIN0 1073
#define IDC_SPIN1 1074
#define IDC_GIVE_SOUTH_BEST_HAND 1074
#define IDC_SPIN2 1075
#define IDC_RADIO_OVERCALLS 1075
#define IDC_SPIN3 1076
#define IDC_SUPPRESS_BACKGROUND_MITMAP 1076
#define IDC_SHOW_BACKGROUND_MITMAP 1076
#define IDC_SHOW_BACKGROUND_BITMAP 1076
#define IDC_SPIN4 1077
#define IDC_COUNT_SHORT_SUITS 1077
#define IDC_SPIN5 1078
#define IDC_4THSUIT_FORCING 1078
#define IDC_SPIN6 1079
#define IDC_SUPPRESS_SPLASH_WINDOW 1079
#define IDC_SHOW_SPLASH_WINDOW 1079
#define IDC_JACOBY_2NT 1079
#define IDC_SPIN7 1080
#define IDC_STRUCTURED_REVERSES 1080
#define IDC_SHOW_LOW_RES_OPTION 1080
#define IDC_SPIN8 1081
#define IDC_MICHAELS 1081
#define IDC_SPIN9 1082
#define IDC_SHOW_TEXT_BID_BUTTON 1082
#define IDC_SPIN10 1083
#define IDC_SPIN11 1084
#define IDC_STATIC_COPYRIGHT 1084
#define IDC_SPIN12 1085
#define IDC_PROGRESS 1085
#define IDC_SPIN13 1086
#define IDC_BONUS_POINTS 1086
#define IDC_TRICK_POINTS 1087
#define IDC_SCORE_HONORS 1087
#define IDC_OBSERVER_NORTH 1088
#define IDC_ENABLE_NUMBERED_DEALS 1088
#define IDC_OBSERVER_WEST 1089
#define IDC_OBSERVER_EAST 1090
#define IDC_OBSERVER_SOUTH 1091
#define IDC_TARGET_NORTH 1092
#define IDC_DECLARER_LABEL 1092
#define IDC_TARGET_WEST 1093
#define IDC_PLAY_PLAN 1093
#define IDC_TARGET_EAST 1094
#define IDC_NUM_PLAYS 1094
#define IDC_TARGET_SOUTH 1095
#define IDC_CURRENT_PLAY 1095
#define IDC_TRACE_LEVEL 1096
#define IDC_SUIT_STATUS 1097
#define IDC_PAUSE_LENGTH 1097
#define IDC_GAME_INDEX 1098
#define IDC_GAMEINFO 1101
#define IDC_BITMAP_MODE 1102
#define IDC_BITMAP_MODE2 1103
#define IDC_COLOR_SWATCH 1105
#define IDC_SHOW_DUMMY_TRUMPS_ON_LEFT 1106
#define IDC_SCALE_LARGE_BITMAPS 1107
#define IDC_RADIO_SOUTH 1108
#define IDC_RADIO_WEST 1109
#define IDC_DISPLAY_ORDER 1109
#define IDC_RADIO_NORTH 1110
#define IDC_AUTO_ALIGN_DIALOGS 1110
#define IDC_RADIO_EAST 1111
#define IDC_TAB1 1111
#define IDC_COMBO_OBSERVER 1112
#define IDC_COMBO_TARGET 1113
#define IDC_HISTORY_DIALOG_FONT 1113
#define IDC_ANALYSIS_DIALOG_FONT 1114
#define IDC_SECONDARY_COPYRIGHT 1115
#define IDC_EMAIL_ADDRESS 1116
#define IDC_VULNERABILITY0 1117
#define IDC_VULNERABILITY1 1118
#define IDC_VULNERABILITY2 1119
#define IDC_VULNERABILITY3 1120
#define IDC_VULNERABILITY4 1121
#define IDC_VULNERABILTY_GROUP 1122
#define IDC_DUPLICATE_SCORING 1123
#define IDC_HYPERLINK 1125
#define IDC_VALUATION1 1126
#define IDC_VALUATION2 1127
#define IDC_VALUATION3 1128
#define IDC_LABEL_WEST 1128
#define IDC_LABEL_NORTH 1129
#define IDC_BIDDING_ENGINE 1129
#define IDC_LABEL_EAST 1130
#define IDC_SLIDER_AGGRESSIVENESS 1130
#define IDC_LABEL_SOUTH 1131
#define IDC_BIDDING_ENGINE2 1131
#define IDC_TEXT_WEST 1132
#define IDC_ERROR 1132
#define IDC_TEXT_NORTH 1133
#define IDC_LBL_HANDS 1133
#define IDC_TEXT_EAST 1134
#define IDC_LBL_CYCLES 1134
#define IDC_TEXT_SOUTH 1135
#define IDC_LAYERS0 1136
#define IDC_LBL_BIDS 1137
#define IDC_LAYERS1 1137
#define IDC_LBL_CORRECTIONS 1138
#define IDC_LAYERS2 1138
#define IDC_LBL_ERROR 1139
#define IDC_LAYERS3 1139
#define IDC_LBL_CORRECTION_RATE 1140
#define IDC_NODES_PER_LAYER 1140
#define IDC_NODES_PER_LAYER2 1141
#define IDC_NODES_PER_LAYER3 1142
#define IDC_LBL_NP_BIDS 1142
#define IDC_NODES_PER_LAYER4 1143
#define IDC_LBL_NP_CORRECTIONS 1143
#define IDC_NODES_PER_LAYER5 1144
#define IDC_LBL_NP_CORRECTION_RATE 1144
#define IDC_SPOKEN_BIDS 1145
#define IDC_SAVE_POSITIONS 1146
#define ID_STOP 1147
#define ID_START 1148
#define IDC_STATUS_TEXT 1149
#define IDC_COMBO_LEVEL 1151
#define IDC_SEPARATOR 1152
#define IDCI_BID_SOUTH 1158
#define IDCI_BID_WEST 1159
#define IDCI_BID_NORTH 1160
#define IDCI_BID_EAST 1161
#define IDC_MANUAL_BIDDING 1162
#define IDC_IMAGE 1163
#define IDC_COPYRIGHT1 1164
#define IDC_COPYRIGHT2 1165
#define IDC_PERCENT_MADE 1166
#define IDC_GAMES_MADE_LABEL 1167
#define IDC_AVG_TIME 1168
#define IDC_LABEL_AVGTIME 1169
#define IDC_DONT_SHOW 1170
#define ID_CLEAR_ANALYSIS 2781
#define IDC_OUTPUT0 4000
#define IDC_OUTPUT1 4001
#define IDC_OUTPUT2 4002
#define IDC_OUTPUT3 4003
#define IDC_OUTPUT4 4004
#define IDC_OUTPUT5 4005
#define IDC_OUTPUT6 4006
#define IDC_OUTPUT7 4007
#define IDC_OUTPUT8 4008
#define IDC_OUTPUT9 4009
#define IDC_OUTPUT10 4010
#define IDC_OUTPUT11 4011
#define IDC_OUTPUT12 4012
#define IDC_OUTPUT13 4013
#define IDC_OUTPUT14 4014
#define IDC_OUTPUT15 4015
#define IDC_OUTPUT16 4016
#define IDC_OUTPUT17 4017
#define IDC_OUTPUT18 4018
#define IDC_OUTPUT19 4019
#define IDC_OUTPUT20 4020
#define IDC_OUTPUT21 4021
#define IDC_OUTPUT22 4022
#define IDC_OUTPUT23 4023
#define IDC_OUTPUT24 4024
#define IDC_OUTPUT25 4025
#define IDC_OUTPUT26 4026
#define IDC_OUTPUT27 4027
#define IDC_OUTPUT28 4028
#define IDC_OUTPUT29 4029
#define IDC_OUTPUT30 4030
#define IDC_OUTPUT31 4031
#define IDC_OUTPUT32 4032
#define IDC_OUTPUT33 4033
#define IDC_OUTPUT34 4034
#define IDC_OUTPUT35 4035
#define IDC_OUTPUT36 4036
#define IDC_OUTPUT37 4037
#define IDB_CONTRACT_1CLUB 5001
#define IDB_CONTRACT_2CLUB 5002
#define IDB_CONTRACT_3CLUB 5003
#define IDB_CONTRACT_4CLUB 5004
#define IDB_CONTRACT_5CLUB 5005
#define IDB_CONTRACT_6CLUB 5006
#define IDB_CONTRACT_7CLUB 5007
#define IDB_CONTRACT_1DIAMOND 5101
#define IDB_CONTRACT_2DIAMOND 5102
#define IDB_CONTRACT_3DIAMOND 5103
#define IDB_CONTRACT_4DIAMOND 5104
#define IDB_CONTRACT_5DIAMOND 5105
#define IDB_CONTRACT_6DIAMOND 5106
#define IDB_CONTRACT_7DIAMOND 5107
#define IDB_CONTRACT_1HEART 5201
#define IDB_CONTRACT_2HEART 5202
#define IDB_CONTRACT_3HEART 5203
#define IDB_CONTRACT_4HEART 5204
#define IDB_CONTRACT_5HEART 5205
#define IDB_CONTRACT_6HEART 5206
#define IDB_CONTRACT_7HEART 5207
#define IDB_CONTRACT_1SPADE 5301
#define IDB_CONTRACT_2SPADE 5302
#define IDB_CONTRACT_3SPADE 5303
#define IDB_CONTRACT_4SPADE 5304
#define IDB_CONTRACT_5SPADE 5305
#define IDB_CONTRACT_6SPADE 5306
#define IDB_CONTRACT_7SPADE 5307
#define IDB_CONTRACT_1NT 5401
#define IDB_CONTRACT_2NT 5402
#define IDB_CONTRACT_3NT 5403
#define IDB_CONTRACT_4NT 5404
#define IDB_CONTRACT_5NT 5405
#define IDB_CONTRACT_6NT 5406
#define IDB_CONTRACT_7NT 5407
#define IDB_CARDS_BASE 6000
#define IDB_CLUBS_2 6002
#define IDB_CLUBS_3 6003
#define IDB_CLUBS_4 6004
#define IDB_CLUBS_5 6005
#define IDB_CLUBS_6 6006
#define IDB_CLUBS_7 6007
#define IDB_CLUBS_8 6008
#define IDB_CLUBS_9 6009
#define IDB_CLUBS_10 6010
#define IDB_CLUBS_J 6011
#define IDB_CLUBS_Q 6012
#define IDB_CLUBS_K 6013
#define IDB_CLUBS_A 6014
#define IDB_DIAMONDS_2 6102
#define IDB_DIAMONDS_3 6103
#define IDB_DIAMONDS_4 6104
#define IDB_DIAMONDS_5 6105
#define IDB_DIAMONDS_6 6106
#define IDB_DIAMONDS_7 6107
#define IDB_DIAMONDS_8 6108
#define IDB_DIAMONDS_9 6109
#define IDB_DIAMONDS_10 6110
#define IDB_DIAMONDS_J 6111
#define IDB_DIAMONDS_Q 6112
#define IDB_DIAMONDS_K 6113
#define IDB_DIAMONDS_A 6114
#define IDB_HEARTS_2 6202
#define IDB_HEARTS_3 6203
#define IDB_HEARTS_4 6204
#define IDB_HEARTS_5 6205
#define IDB_HEARTS_6 6206
#define IDB_HEARTS_7 6207
#define IDB_HEARTS_8 6208
#define IDB_HEARTS_9 6209
#define IDB_HEARTS_10 6210
#define IDB_HEARTS_J 6211
#define IDB_HEARTS_Q 6212
#define IDB_HEARTS_K 6213
#define IDB_HEARTS_A 6214
#define IDB_SPADES_2 6302
#define IDB_SPADES_3 6303
#define IDB_SPADES_4 6304
#define IDB_SPADES_5 6305
#define IDB_SPADES_6 6306
#define IDB_SPADES_7 6307
#define IDB_SPADES_8 6308
#define IDB_SPADES_9 6309
#define IDB_SPADES_10 6310
#define IDB_SPADES_J 6311
#define IDB_SPADES_Q 6312
#define IDB_SPADES_K 6313
#define IDB_SPADES_A 6314
#define IDB_CARDS_BASEM 7000
#define IDB_CLUBS_2M 7002
#define IDB_CLUBS_3M 7003
#define IDB_CLUBS_4M 7004
#define IDB_CLUBS_5M 7005
#define IDB_CLUBS_6M 7006
#define IDB_CLUBS_7M 7007
#define IDB_CLUBS_8M 7008
#define IDB_CLUBS_9M 7009
#define IDB_CLUBS_10M 7010
#define IDB_CLUBS_JM 7011
#define IDB_CLUBS_QM 7012
#define IDB_CLUBS_KM 7013
#define IDB_CLUBS_AM 7014
#define IDB_DIAMONDS_2M 7102
#define IDB_DIAMONDS_3M 7103
#define IDB_DIAMONDS_4M 7104
#define IDB_DIAMONDS_5M 7105
#define IDB_DIAMONDS_6M 7106
#define IDB_DIAMONDS_7M 7107
#define IDB_DIAMONDS_8M 7108
#define IDB_DIAMONDS_9M 7109
#define IDB_DIAMONDS_10M 7110
#define IDB_DIAMONDS_JM 7111
#define IDB_DIAMONDS_QM 7112
#define IDB_DIAMONDS_KM 7113
#define IDB_DIAMONDS_AM 7114
#define IDB_HEARTS_2M 7202
#define IDB_HEARTS_3M 7203
#define IDB_HEARTS_4M 7204
#define IDB_HEARTS_5M 7205
#define IDB_HEARTS_6M 7206
#define IDB_HEARTS_7M 7207
#define IDB_HEARTS_8M 7208
#define IDB_HEARTS_9M 7209
#define IDB_HEARTS_10M 7210
#define IDB_HEARTS_JM 7211
#define IDB_HEARTS_QM 7212
#define IDB_HEARTS_KM 7213
#define IDB_HEARTS_AM 7214
#define IDB_SPADES_2M 7302
#define IDB_SPADES_3M 7303
#define IDB_SPADES_4M 7304
#define IDB_SPADES_5M 7305
#define IDB_SPADES_6M 7306
#define IDB_SPADES_7M 7307
#define IDB_SPADES_8M 7308
#define IDB_SPADES_9M 7309
#define IDB_SPADES_10M 7310
#define IDB_SPADES_JM 7311
#define IDB_SPADES_QM 7312
#define IDB_SPADES_KM 7313
#define IDB_SPADES_AM 7314
#define IDB_CARD_MASK 8500
#define IDB_CARDBACKS 8599
#define IDB_CARDBACK0 8600
#define IDB_CARDBACK1 8601
#define IDB_CARDBACK2 8602
#define IDB_CARDBACK3 8603
#define IDB_CARDBACK4 8604
#define IDB_CARDBACK5 8605
#define IDB_CARDBACK6 8606
#define IDB_CARDBACK7 8607
#define IDB_CARDBACK8 8608
#define IDB_CARDBACK9 8609
#define IDB_CARDBACK10 8610
#define IDB_CARDBACK11 8611
#define IDB_CARDBACK12 8612
#define IDB_CARDBACK13 8613
#define IDB_CARDBACK14 8614
#define IDB_CARDBACK15 8615
#define IDB_CARDBACK16 8616
#define IDB_CARDBACK17 8617
#define IDB_CARDBACK18 8618
#define IDB_CARDBACK19 8619
#define IDB_CARDBACK20 8620
#define IDB_CARDBACK21 8621
#define IDB_CARDBACK22 8622
#define IDB_CARDBACK23 8623
#define IDB_CARDBACK24 8624
#define IDB_CARDBACK25 8625
#define IDB_CARDBACK26 8626
#define IDB_CARDBACK27 8627
#define IDB_CARDBACK28 8628
#define IDB_CARDBACK29 8629
#define IDB_CARDBACK30 8630
#define IDB_CARDBACK31 8631
#define IDB_CARDBACK32 8632
#define IDB_CARDBACK33 8633
#define IDB_CARDBACK34 8634
#define IDB_CARDBACK35 8635
#define IDB_CARDBACK36 8636
#define IDB_CARDBACK37 8637
#define IDB_CARDBACK38 8638
#define IDB_CARDBACK39 8639
#define IDB_CARDBACK40 8640
#define IDB_CARDBACK41 8641
#define IDB_CARDBACK42 8642
#define IDB_CARDBACK43 8643
#define IDB_CARDBACK44 8644
#define IDB_CARDBACK45 8645
#define IDB_CARDBACK46 8646
#define IDB_CARDBACK47 8647
#define IDB_CARDBACK48 8648
#define IDB_CARDBACK49 8649
#define IDB_CARDBACK50 8650
#define IDB_CARDBACK51 8651
#define IDB_CARDBACK52 8652
#define IDB_CARDBACK53 8653
#define IDB_CARDBACK54 8654
#define IDB_CARDBACK55 8655
#define IDB_CARDBACK56 8656
#define IDB_CARDBACK57 8657
#define IDB_CARDBACK58 8658
#define IDB_CARDBACK59 8659
#define IDB_CARDBACK60 8660
#define IDB_CARDBACK61 8661
#define IDB_CARDBACK62 8662
#define IDB_CARDBACK63 8663
#define IDC_CHECK0 9000
#define IDC_SUIT_CLUBS 9000
#define IDC_CHECK1 9001
#define IDC_SUIT_DIAMONDS 9001
#define IDC_CHECK2 9002
#define IDC_SUIT_HEARTS 9002
#define IDC_CHECK3 9003
#define IDC_SUIT_SPADES 9003
#define IDC_CHECK4 9004
#define IDC_SUIT_NOTRUMP 9004
#define IDC_CHECK5 9005
#define IDC_CHECK6 9006
#define IDC_CHECK7 9007
#define IDC_CHECK8 9008
#define IDC_CHECK9 9009
#define IDC_CHECK10 9010
#define IDC_CHECK11 9011
#define IDC_CHECK12 9012
#define IDC_CHECK13 9013
#define IDC_CHECK14 9014
#define IDC_CHECK15 9015
#define IDC_CHECK16 9016
#define IDC_CHECK17 9017
#define IDC_CHECK18 9018
#define IDC_CHECK19 9019
#define IDC_CHECK20 9020
#define IDC_CHECK21 9021
#define IDC_CHECK22 9022
#define IDC_CHECK23 9023
#define IDC_CHECK24 9024
#define IDC_CHECK25 9025
#define IDC_CHECK26 9026
#define IDC_CHECK27 9027
#define IDC_CHECK28 9028
#define IDC_CHECK29 9029
#define IDC_CHECK30 9030
#define IDC_CHECK31 9031
#define IDC_CHECK32 9032
#define IDC_CHECK33 9033
#define IDC_CHECK34 9034
#define IDC_CHECK35 9035
#define IDC_CHECK36 9036
#define IDC_CHECK37 9037
#define IDC_CHECK38 9038
#define IDC_CHECK39 9039
#define IDC_CHECK40 9040
#define IDC_CHECK41 9041
#define IDC_CHECK42 9042
#define IDC_CHECK43 9043
#define IDC_CHECK44 9044
#define IDC_CHECK45 9045
#define IDC_CHECK46 9046
#define IDC_CHECK47 9047
#define IDC_CHECK48 9048
#define IDC_CHECK49 9049
#define IDC_CHECK50 9050
#define IDC_CHECK51 9051
#define IDC_CHECK52 9052
#define IDC_EDIT0 9100
#define IDC_EDIT1 9101
#define IDC_FILE_DESCRIPTION 9101
#define IDC_MIN_GAME_PTS 9101
#define IDC_EDIT 9101
#define IDC_DESCRIPTION 9101
#define IDC_NOTE 9101
#define IDC_BITMAP_PATH 9101
#define IDC_FILENAME 9101
#define IDC_VALUE_ACE 9101
#define IDC_NET_FILE_PATH 9101
#define IDC_EDIT2 9102
#define IDC_MAX_GAME_PTS 9102
#define IDC_EDIT_GRANULARITY 9102
#define IDC_FILE_FORMAT 9102
#define IDC_VALUE_KING 9102
#define IDC_EDIT3 9103
#define IDC_MIN_MAJOR_GAME_PTS 9103
#define IDC_DEAL_NUMBER 9103
#define IDC_VALUE_QUEEN 9103
#define IDC_EDIT4 9104
#define IDC_MAX_MAJOR_GAME_PTS 9104
#define IDC_VALUE_JACK 9104
#define IDC_EDIT5 9105
#define IDC_MIN_MINOR_GAME_PTS 9105
#define IDC_VALUE_TEN 9105
#define IDC_EDIT6 9106
#define IDC_MAX_MINOR_GAME_PTS 9106
#define IDC_EDIT7 9107
#define IDC_MIN_NT_GAME_PTS 9107
#define IDC_EDIT8 9108
#define IDC_MAX_NT_GAME_PTS 9108
#define IDC_EDIT9 9109
#define IDC_MIN_SLAM_PTS 9109
#define IDC_EDIT10 9110
#define IDC_MAX_SLAM_PTS 9110
#define IDC_EDIT11 9111
#define IDC_MIN_SMALL_SLAM_PTS 9111
#define IDC_EDIT12 9112
#define IDC_MAX_SMALL_SLAM_PTS 9112
#define IDC_EDIT13 9113
#define IDC_MIN_GRAND_SLAM_PTS 9113
#define IDC_EDIT14 9114
#define IDC_MAX_GRAND_SLAM_PTS 9114
#define IDC_EDIT15 9115
#define IDC_EDIT16 9116
#define IDC_EDIT17 9117
#define IDC_EDIT18 9118
#define IDC_EDIT19 9119
#define IDC_EDIT20 9120
#define IDC_RADIO0 9200
#define IDC_RADIO1 9201
#define IDC_RADIO2 9202
#define IDC_RADIO3 9203
#define IDC_RADIO4 9204
#define IDC_RADIO5 9205
#define IDC_RADIO6 9206
#define IDC_RADIO7 9207
#define IDC_RADIO8 9208
#define IDC_RADIO9 9209
#define IDC_RADIO10 9210
#define IDC_RADIO11 9211
#define IDC_RADIO12 9212
#define IDC_RADIO13 9213
#define IDC_RADIO14 9214
#define IDC_RADIO15 9215
#define IDC_RADIO16 9216
#define IDC_RADIO17 9217
#define IDC_RADIO18 9218
#define IDC_RADIO19 9219
#define IDC_RADIO20 9220
#define IDC_STATIC1 9301
#define IDC_STATIC2 9302
#define IDC_STATIC3 9303
#define IDC_STATIC4 9304
#define IDC_STATIC5 9305
#define IDC_STATIC6 9306
#define IDC_STATIC7 9307
#define IDC_STATIC8 9308
#define IDC_STATIC9 9309
#define IDC_STATIC10 9310
#define IDC_STATIC_VERSION 9310
#define IDC_STATIC11 9311
#define IDC_STATIC12 9312
#define IDC_STATIC13 9313
#define IDC_STATIC14 9314
#define IDC_STATIC15 9315
#define IDC_STATIC16 9316
#define IDC_STATIC17 9317
#define IDC_STATIC18 9318
#define IDC_STATIC19 9319
#define IDC_STATIC20 9320
#define IDC_STATIC_PLATFORM 9320
#define IDC_STATIC21 9321
#define IDC_MESSAGE 9321
#define IDC_STATIC_DATE 9321
#define IDC_STATIC22 9322
#define IDC_MESSAGE2 9322
#define IDC_STATIC23 9323
#define IDC_STATIC24 9324
#define IDC_STATIC25 9325
#define IDC_STATIC26 9326
#define IDC_STATIC27 9327
#define IDC_STATIC28 9328
#define IDC_STATIC29 9329
#define IDC_LIST1 9401
#define IDC_HOLDINGS 9401
#define IDC_TAGS_LIST 9401
#define IDC_LIST 9401
#define IDC_LIST_RESULTS 9401
#define IDC_LIST2 9402
#define IDC_LIST3 9403
#define IDC_BUTTON1 9501
#define IDC_CLEAR 9501
#define IDC_PASS 9501
#define IDC_CLOSE 9501
#define IDC_SAVE_CONFIG 9501
#define IDC_PREV 9501
#define IDC_BACKGROUND_COLOR 9501
#define IDC_SET_ANALYSIS_DIALOG_FONT 9501
#define IDC_WEST 9501
#define IDC_ACCEPT 9501
#define IDC_COMPUTER_REPLAY 9501
#define IDC_BUTTON2 9502
#define IDC_REMOVE_CONFIG 9502
#define IDC_FIRST 9502
#define IDC_SET_HISTORY_DIALOG_FONT 9502
#define IDC_NORTH 9502
#define IDC_COMPUTER_REPLAY_AUTO 9502
#define IDC_BUTTON3 9503
#define IDC_BID_BACK_UP 9503
#define IDC_NEXT 9503
#define IDC_EAST 9503
#define IDC_BID_RESTART 9504
#define IDC_LAST 9504
#define IDC_SOUTH 9504
#define IDC_PREV_GAME 9505
#define IDC_ALL 9505
#define IDC_LAST_GAME 9506
#define IDC_FIRST_GAME 9507
#define IDC_NEXT_GAME 9508
#define IDC_PLAY 9509
#define IDC_SAVE_OUT 9510
#define IDC_EXPAND_COLLAPSE 9511
#define IDC_HIDE 9580
#define IDC_MINGAMEP_UP 9601
#define IDC_MINGAMEP_DOWN 9602
#define IDC_MAXGAMEP_UP 9603
#define IDC_MAXGAMEP_DOWN 9604
#define IDC_MINMAJORP_UP 9610
#define IDC_MINMAJORP_DOWN 9611
#define IDC_MAXMAJORP_UP 9612
#define IDC_MAXMAJORP_DOWN 9613
#define IDC_MINMINORP_UP 9620
#define IDC_MINMINORP_DOWN 9621
#define IDC_MAXMINORP_UP 9622
#define IDC_MAXMINORP_DOWN 9623
#define IDC_MINNTP_UP 9630
#define IDC_MINNTP_DOWN 9631
#define IDC_MAXNTP_UP 9632
#define IDC_MAXNTP_DOWN 9633
#define IDC_MINSLAMP_UP 9640
#define IDC_MINSLAMP_DOWN 9641
#define IDC_MAXSLAMP_UP 9642
#define IDC_MAXSLAMP_DOWN 9643
#define IDC_MINSSLAMP_UP 9650
#define IDC_MINSSLAMP_DOWN 9651
#define IDC_MAXSSAAMP_UP 9652
#define IDC_MAXSSLAMP_DOWN 9653
#define IDC_MINGSLAMP_UP 9660
#define IDC_MINGSLAMP_DOWN 9661
#define IDC_MAXGSLAMP_UP 9662
#define IDC_MAXGSLAMP_DOWN 9663
#define IDC_BID_SOUTH 9700
#define IDC_BID_WEST 9701
#define IDC_BID_NORTH 9702
#define IDC_BID_EAST 9703
#define IDC_BID_PASS 9800
#define IDC_BID_1C 9801
#define IDC_BID_1D 9802
#define IDC_BID_1H 9803
#define IDC_BID_1S 9804
#define IDC_BID_1NT 9805
#define IDC_BID_2C 9806
#define IDC_BID_LEVEL_1 9806
#define IDC_BID_2D 9807
#define IDC_BID_LEVEL_2 9807
#define IDC_BID_2H 9808
#define IDC_BID_LEVEL_3 9808
#define IDC_BID_2S 9809
#define IDC_BID_LEVEL_4 9809
#define IDC_BID_2NT 9810
#define IDC_BID_LEVEL_5 9810
#define IDC_BID_3C 9811
#define IDC_BID_LEVEL_6 9811
#define IDC_BID_3D 9812
#define IDC_BID_LEVEL_7 9812
#define IDC_BID_3H 9813
#define IDC_BID_3S 9814
#define IDC_BID_3NT 9815
#define IDC_BID_4C 9816
#define IDC_BID_4D 9817
#define IDC_BID_4H 9818
#define IDC_BID_4S 9819
#define IDC_BID_4NT 9820
#define IDC_BID_5C 9821
#define IDC_BID_5D 9822
#define IDC_BID_5H 9823
#define IDC_BID_5S 9824
#define IDC_BID_5NT 9825
#define IDC_BID_6C 9826
#define IDC_BID_6D 9827
#define IDC_BID_6H 9828
#define IDC_BID_6S 9829
#define IDC_BID_6NT 9830
#define IDC_BID_7C 9831
#define IDC_BID_7D 9832
#define IDC_BID_7H 9833
#define IDC_BID_7S 9834
#define IDC_BID_7NT 9835
#define IDC_BID_DOUBLE 9840
#define IDC_BID_REDOUBLE 9841
#define IDC_BID_REDEAL 9842
#define IDBS_CARDBACK0 10000
#define IDBS_CARDBACK1 10001
#define IDBS_CARDBACK2 10002
#define IDBS_CARDBACK3 10003
#define IDBS_CARDBACK4 10004
#define IDBS_CARDBACK5 10005
#define IDBS_CARDS_BASE 10100
#define IDBS_CLUBS_2 10102
#define IDBS_CLUBS_3 10103
#define IDBS_CLUBS_4 10104
#define IDBS_CLUBS_5 10105
#define IDBS_CLUBS_6 10106
#define IDBS_CLUBS_7 10107
#define IDBS_CLUBS_8 10108
#define IDBS_CLUBS_9 10109
#define IDBS_CLUBS_10 10110
#define IDBS_CLUBS_J 10111
#define IDBS_CLUBS_Q 10112
#define IDBS_CLUBS_K 10113
#define IDBS_CLUBS_A 10114
#define IDBS_DIAMONDS_2 10202
#define IDBS_DIAMONDS_3 10203
#define IDBS_DIAMONDS_4 10204
#define IDBS_DIAMONDS_5 10205
#define IDBS_DIAMONDS_6 10206
#define IDBS_DIAMONDS_7 10207
#define IDBS_DIAMONDS_8 10208
#define IDBS_DIAMONDS_9 10209
#define IDBS_DIAMONDS_10 10210
#define IDBS_DIAMONDS_J 10211
#define IDBS_DIAMONDS_Q 10212
#define IDBS_DIAMONDS_K 10213
#define IDBS_DIAMONDS_A 10214
#define IDBS_HEARTS_2 10302
#define IDBS_HEARTS_3 10303
#define IDBS_HEARTS_4 10304
#define IDBS_HEARTS_5 10305
#define IDBS_HEARTS_6 10306
#define IDBS_HEARTS_7 10307
#define IDBS_HEARTS_8 10308
#define IDBS_HEARTS_9 10309
#define IDBS_HEARTS_10 10310
#define IDBS_HEARTS_J 10311
#define IDBS_HEARTS_Q 10312
#define IDBS_HEARTS_K 10313
#define IDBS_HEARTS_A 10314
#define IDBS_SPADES_2 10402
#define IDBS_SPADES_3 10403
#define IDBS_SPADES_4 10404
#define IDBS_SPADES_5 10405
#define IDBS_SPADES_6 10406
#define IDBS_SPADES_7 10407
#define IDBS_SPADES_8 10408
#define IDBS_SPADES_9 10409
#define IDBS_SPADES_10 10410
#define IDBS_SPADES_J 10411
#define IDBS_SPADES_Q 10412
#define IDBS_SPADES_K 10413
#define IDBS_SPADES_A 10414
#define IDBS_CARD_MASK 10500
#define IDB_ABOUT_PROGTITLE 10621
#define IDB_ABOUT_PROGTITLE2 10622
#define IDBS_WINNERS 10623
#define IDBS_LOSERS 10624
#define IDS_WAITTOBID 31800
#define IDS_DEFAULT_FONT 31900
#define IDS_DEFAULT_SYSFONT 31901
#define IDS_DEFAULT_SCREENFONT 31902
#define IDS_DEFAULT_FIXEDFONT 31903
#define IDS_DEFAULT_PRINTFONT 31904