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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
|
/* windint.h -- internal header file for windres program.
Copyright (C) 1997-2016 Free Software Foundation, Inc.
Written by Kai Tietz, Onevision.
This file is part of GNU Binutils.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
02110-1301, USA. */
#include "winduni.h"
#ifndef WINDINT_H
#define WINDINT_H
/* Use bfd_size_type to ensure a sufficient number of bits. */
#ifndef DEFINED_RC_UINT_TYPE
#define DEFINED_RC_UINT_TYPE
typedef bfd_size_type rc_uint_type;
#endif
/* Resource directory structure. */
typedef struct res_hdr
{
rc_uint_type data_size;
rc_uint_type header_size;
} res_hdr;
struct __attribute__ ((__packed__)) bin_res_hdr
{
bfd_byte data_size[4];
bfd_byte header_size[4];
};
#define BIN_RES_HDR_SIZE 8
struct __attribute__ ((__packed__)) bin_res_id
{
bfd_byte sig[2]; /* Has to be 0xffff for unnamed ids. */
bfd_byte id[2];
};
#define BIN_RES_ID 4
/* This structure is used when converting resource information to
binary. */
typedef struct bindata
{
/* Next data. */
struct bindata *next;
/* Length of data. */
rc_uint_type length;
/* Data. */
bfd_byte *data;
} bindata;
/* This structure is used when converting resource information to
coff. */
typedef struct coff_res_data
{
/* Next data. */
struct coff_res_data *next;
/* Length of data. */
rc_uint_type length;
/* Data. */
const struct rc_res_resource *res;
} coff_res_data;
/* We represent resources internally as a tree, similar to the tree
used in the .rsrc section of a COFF file. The root is a
rc_res_directory structure. */
typedef struct rc_res_directory
{
/* Resource flags. According to the MS docs, this is currently
always zero. */
rc_uint_type characteristics;
/* Time/date stamp. */
rc_uint_type time;
/* Major version number. */
rc_uint_type major;
/* Minor version number. */
rc_uint_type minor;
/* Directory entries. */
struct rc_res_entry *entries;
} rc_res_directory;
/* A resource ID is stored in a rc_res_id structure. */
typedef struct rc_res_id
{
/* Non-zero if this entry has a name rather than an ID. */
rc_uint_type named : 1;
union
{
/* If the named field is non-zero, this is the name. */
struct
{
/* Length of the name. */
rc_uint_type length;
/* Pointer to the name, which is a Unicode string. */
unichar *name;
} n;
/* If the named field is zero, this is the ID. */
rc_uint_type id;
} u;
} rc_res_id;
/* Each entry in the tree is a rc_res_entry structure. We mix
directories and resources because in a COFF file all entries in a
directory are sorted together, whether the entries are
subdirectories or resources. */
typedef struct rc_res_entry
{
/* Next entry. */
struct rc_res_entry *next;
/* Resource ID. */
rc_res_id id;
/* Non-zero if this entry is a subdirectory rather than a leaf. */
rc_uint_type subdir : 1;
union
{
/* If the subdir field is non-zero, this is a pointer to the
subdirectory. */
rc_res_directory *dir;
/* If the subdir field is zero, this is a pointer to the resource
data. */
struct rc_res_resource *res;
} u;
} rc_res_entry;
/* Types of resources. */
enum rc_res_type
{
RES_TYPE_UNINITIALIZED,
RES_TYPE_ACCELERATOR,
RES_TYPE_BITMAP,
RES_TYPE_CURSOR,
RES_TYPE_GROUP_CURSOR,
RES_TYPE_DIALOG,
RES_TYPE_FONT,
RES_TYPE_FONTDIR,
RES_TYPE_ICON,
RES_TYPE_GROUP_ICON,
RES_TYPE_MENU,
RES_TYPE_MESSAGETABLE,
RES_TYPE_RCDATA,
RES_TYPE_STRINGTABLE,
RES_TYPE_USERDATA,
RES_TYPE_VERSIONINFO,
RES_TYPE_DLGINCLUDE,
RES_TYPE_PLUGPLAY,
RES_TYPE_VXD,
RES_TYPE_ANICURSOR,
RES_TYPE_ANIICON,
RES_TYPE_DLGINIT,
RES_TYPE_TOOLBAR
};
/* A res file and a COFF file store information differently. The
res_info structures holds data which in a res file is stored with
each resource, but in a COFF file is stored elsewhere. */
typedef struct rc_res_res_info
{
/* Language. In a COFF file, the third level of the directory is
keyed by the language, so the language of a resource is defined
by its location in the resource tree. */
rc_uint_type language;
/* Characteristics of the resource. Entirely user defined. In a
COFF file, the rc_res_directory structure has a characteristics
field, but I don't know if it's related to the one in the res
file. */
rc_uint_type characteristics;
/* Version of the resource. Entirely user defined. In a COFF file,
the rc_res_directory structure has a characteristics field, but I
don't know if it's related to the one in the res file. */
rc_uint_type version;
/* Memory flags. This is a combination of the MEMFLAG values
defined below. Most of these values are historical, and are not
meaningful for win32. I don't think there is any way to store
this information in a COFF file. */
rc_uint_type memflags;
} rc_res_res_info;
/* Binary layout of rc_res_info. */
struct __attribute__ ((__packed__)) bin_res_info
{
bfd_byte version[4];
bfd_byte memflags[2];
bfd_byte language[2];
bfd_byte version2[4];
bfd_byte characteristics[4];
};
#define BIN_RES_INFO_SIZE 16
/* Each resource in a COFF file has some information which can does
not appear in a res file. */
typedef struct rc_res_coff_info
{
/* The code page used for the data. I don't really know what this
should be. It has something todo with ASCII to Unicode encoding. */
rc_uint_type codepage;
/* A resource entry in a COFF file has a reserved field, which we
record here when reading a COFF file. When writing a COFF file,
we set this field to zero. */
rc_uint_type reserved;
} rc_res_coff_info;
/* Resource data is stored in a rc_res_resource structure. */
typedef struct rc_res_resource
{
/* The type of resource. */
enum rc_res_type type;
/* The data for the resource. */
union
{
struct
{
rc_uint_type length;
const bfd_byte *data;
} data;
struct rc_accelerator *acc;
struct rc_cursor *cursor;
struct rc_group_cursor *group_cursor;
struct rc_dialog *dialog;
struct rc_fontdir *fontdir;
struct rc_group_icon *group_icon;
struct rc_menu *menu;
struct rc_rcdata_item *rcdata;
struct rc_stringtable *stringtable;
struct rc_rcdata_item *userdata;
struct rc_versioninfo *versioninfo;
struct rc_toolbar *toolbar;
} u;
/* Information from a res file. */
struct rc_res_res_info res_info;
/* Information from a COFF file. */
rc_res_coff_info coff_info;
} rc_res_resource;
#define SUBLANG_SHIFT 10
/* Memory flags in the memflags field of a rc_res_resource. */
#define MEMFLAG_MOVEABLE 0x10
#define MEMFLAG_PURE 0x20
#define MEMFLAG_PRELOAD 0x40
#define MEMFLAG_DISCARDABLE 0x1000
/* Standard resource type codes. These are used in the ID field of a
rc_res_entry structure. */
#define RT_CURSOR 1
#define RT_BITMAP 2
#define RT_ICON 3
#define RT_MENU 4
#define RT_DIALOG 5
#define RT_STRING 6
#define RT_FONTDIR 7
#define RT_FONT 8
#define RT_ACCELERATOR 9
#define RT_RCDATA 10
#define RT_MESSAGETABLE 11
#define RT_GROUP_CURSOR 12
#define RT_GROUP_ICON 14
#define RT_VERSION 16
#define RT_DLGINCLUDE 17
#define RT_PLUGPLAY 19
#define RT_VXD 20
#define RT_ANICURSOR 21
#define RT_ANIICON 22
#define RT_HTML 23
#define RT_MANIFEST 24
#define RT_DLGINIT 240
#define RT_TOOLBAR 241
/* An accelerator resource is a linked list of these structures. */
typedef struct rc_accelerator
{
/* Next accelerator. */
struct rc_accelerator *next;
/* Flags. A combination of the ACC values defined below. */
rc_uint_type flags;
/* Key value. */
rc_uint_type key;
/* Resource ID. */
rc_uint_type id;
} rc_accelerator;
struct __attribute__ ((__packed__)) bin_accelerator
{
bfd_byte flags[2];
bfd_byte key[2];
bfd_byte id[2];
bfd_byte pad[2];
};
#define BIN_ACCELERATOR_SIZE 8
/* Accelerator flags in the flags field of a rc_accelerator.
These are the same values that appear in a res file. I hope. */
#define ACC_VIRTKEY 0x01
#define ACC_NOINVERT 0x02
#define ACC_SHIFT 0x04
#define ACC_CONTROL 0x08
#define ACC_ALT 0x10
#define ACC_LAST 0x80
/* A cursor resource. */
typedef struct rc_cursor
{
/* X coordinate of hotspot. */
bfd_signed_vma xhotspot;
/* Y coordinate of hotspot. */
bfd_signed_vma yhotspot;
/* Length of bitmap data. */
rc_uint_type length;
/* Data. */
const bfd_byte *data;
} rc_cursor;
struct __attribute__ ((__packed__)) bin_cursor
{
bfd_byte xhotspot[2];
bfd_byte yhotspot[2];
};
#define BIN_CURSOR_SIZE 4
/* A group_cursor resource is a list of rc_i_group_cursor structures. */
typedef struct rc_group_cursor
{
/* Next cursor in group. */
struct rc_group_cursor *next;
/* Width. */
rc_uint_type width;
/* Height. */
rc_uint_type height;
/* Planes. */
rc_uint_type planes;
/* Bits per pixel. */
rc_uint_type bits;
/* Number of bytes in cursor resource. */
rc_uint_type bytes;
/* Index of cursor resource. */
rc_uint_type index;
} rc_group_cursor;
struct __attribute__ ((__packed__)) bin_group_cursor_item
{
bfd_byte width[2];
bfd_byte height[2];
bfd_byte planes[2];
bfd_byte bits[2];
bfd_byte bytes[4];
bfd_byte index[2];
};
#define BIN_GROUP_CURSOR_ITEM_SIZE 14
struct __attribute__ ((__packed__)) bin_group_cursor
{
bfd_byte sig1[2];
bfd_byte sig2[2];
bfd_byte nitems[2];
/* struct bin_group_cursor_item item[nitems]; */
};
#define BIN_GROUP_CURSOR_SIZE 6
/* A dialog resource. */
typedef struct rc_dialog
{
/* Basic window style. */
unsigned int style;
/* Extended window style. */
rc_uint_type exstyle;
/* X coordinate. */
rc_uint_type x;
/* Y coordinate. */
rc_uint_type y;
/* Width. */
rc_uint_type width;
/* Height. */
rc_uint_type height;
/* Menu name. */
rc_res_id menu;
/* Class name. */
rc_res_id class;
/* Caption. */
unichar *caption;
/* Font point size. */
rc_uint_type pointsize;
/* Font name. */
unichar *font;
/* Extended information for a dialogex. */
struct rc_dialog_ex *ex;
/* Controls. */
struct rc_dialog_control *controls;
} rc_dialog;
struct __attribute__ ((__packed__)) bin_dialog
{
bfd_byte style[4];
bfd_byte exstyle[4];
bfd_byte off[2];
bfd_byte x[2];
bfd_byte y[2];
bfd_byte width[2];
bfd_byte height[2];
};
#define BIN_DIALOG_SIZE 18
/* An extended dialog has additional information. */
typedef struct rc_dialog_ex
{
/* Help ID. */
rc_uint_type help;
/* Font weight. */
rc_uint_type weight;
/* Whether the font is italic. */
bfd_byte italic;
/* Character set. */
bfd_byte charset;
} rc_dialog_ex;
struct __attribute__ ((__packed__)) bin_dialogex
{
bfd_byte sig1[2];
bfd_byte sig2[2];
bfd_byte help[4];
bfd_byte exstyle[4];
bfd_byte style[4];
bfd_byte off[2];
bfd_byte x[2];
bfd_byte y[2];
bfd_byte width[2];
bfd_byte height[2];
};
#define BIN_DIALOGEX_SIZE 26
struct __attribute__ ((__packed__)) bin_dialogfont
{
bfd_byte pointsize[2];
};
#define BIN_DIALOGFONT_SIZE 2
struct __attribute__ ((__packed__)) bin_dialogexfont
{
bfd_byte pointsize[2];
bfd_byte weight[2];
bfd_byte italic[1];
bfd_byte charset[1];
};
#define BIN_DIALOGEXFONT_SIZE 6
/* Window style flags, from the winsup Defines.h header file. These
can appear in the style field of a rc_dialog or a rc_dialog_control. */
#define CW_USEDEFAULT 0x80000000
#define WS_BORDER 0x800000L
#define WS_CAPTION 0xc00000L
#define WS_CHILD 0x40000000L
#define WS_CHILDWINDOW 0x40000000L
#define WS_CLIPCHILDREN 0x2000000L
#define WS_CLIPSIBLINGS 0x4000000L
#define WS_DISABLED 0x8000000L
#define WS_DLGFRAME 0x400000L
#define WS_GROUP 0x20000L
#define WS_HSCROLL 0x100000L
#define WS_ICONIC 0x20000000L
#define WS_MAXIMIZE 0x1000000L
#define WS_MAXIMIZEBOX 0x10000L
#define WS_MINIMIZE 0x20000000L
#define WS_MINIMIZEBOX 0x20000L
#define WS_OVERLAPPED 0L
#define WS_OVERLAPPEDWINDOW 0xcf0000L
#define WS_POPUP 0x80000000L
#define WS_POPUPWINDOW 0x80880000L
#define WS_SIZEBOX 0x40000L
#define WS_SYSMENU 0x80000L
#define WS_TABSTOP 0x10000L
#define WS_THICKFRAME 0x40000L
#define WS_TILED 0L
#define WS_TILEDWINDOW 0xcf0000L
#define WS_VISIBLE 0x10000000L
#define WS_VSCROLL 0x200000L
#define MDIS_ALLCHILDSTYLES 0x1
#define BS_3STATE 0x5L
#define BS_AUTO3STATE 0x6L
#define BS_AUTOCHECKBOX 0x3L
#define BS_AUTORADIOBUTTON 0x9L
#define BS_BITMAP 0x80L
#define BS_BOTTOM 0x800L
#define BS_CENTER 0x300L
#define BS_CHECKBOX 0x2L
#define BS_DEFPUSHBUTTON 0x1L
#define BS_GROUPBOX 0x7L
#define BS_ICON 0x40L
#define BS_LEFT 0x100L
#define BS_LEFTTEXT 0x20L
#define BS_MULTILINE 0x2000L
#define BS_NOTIFY 0x4000L
#define BS_OWNERDRAW 0xbL
#define BS_PUSHBOX 0xcL /* FIXME! What should this be? */
#define BS_PUSHBUTTON 0L
#define BS_PUSHLIKE 0x1000L
#define BS_RADIOBUTTON 0x4L
#define BS_RIGHT 0x200L
#define BS_RIGHTBUTTON 0x20L
#define BS_TEXT 0L
#define BS_TOP 0x400L
#define BS_USERBUTTON 0x8L
#define BS_VCENTER 0xc00L
#define CBS_AUTOHSCROLL 0x40L
#define CBS_DISABLENOSCROLL 0x800L
#define CBS_DROPDOWN 0x2L
#define CBS_DROPDOWNLIST 0x3L
#define CBS_HASSTRINGS 0x200L
#define CBS_LOWERCASE 0x4000L
#define CBS_NOINTEGRALHEIGHT 0x400L
#define CBS_OEMCONVERT 0x80L
#define CBS_OWNERDRAWFIXED 0x10L
#define CBS_OWNERDRAWVARIABLE 0x20L
#define CBS_SIMPLE 0x1L
#define CBS_SORT 0x100L
#define CBS_UPPERCASE 0x2000L
#define ES_AUTOHSCROLL 0x80L
#define ES_AUTOVSCROLL 0x40L
#define ES_CENTER 0x1L
#define ES_LEFT 0L
#define ES_LOWERCASE 0x10L
#define ES_MULTILINE 0x4L
#define ES_NOHIDESEL 0x100L
#define ES_NUMBER 0x2000L
#define ES_OEMCONVERT 0x400L
#define ES_PASSWORD 0x20L
#define ES_READONLY 0x800L
#define ES_RIGHT 0x2L
#define ES_UPPERCASE 0x8L
#define ES_WANTRETURN 0x1000L
#define LBS_DISABLENOSCROLL 0x1000L
#define LBS_EXTENDEDSEL 0x800L
#define LBS_HASSTRINGS 0x40L
#define LBS_MULTICOLUMN 0x200L
#define LBS_MULTIPLESEL 0x8L
#define LBS_NODATA 0x2000L
#define LBS_NOINTEGRALHEIGHT 0x100L
#define LBS_NOREDRAW 0x4L
#define LBS_NOSEL 0x4000L
#define LBS_NOTIFY 0x1L
#define LBS_OWNERDRAWFIXED 0x10L
#define LBS_OWNERDRAWVARIABLE 0x20L
#define LBS_SORT 0x2L
#define LBS_STANDARD 0xa00003L
#define LBS_USETABSTOPS 0x80L
#define LBS_WANTKEYBOARDINPUT 0x400L
#define SBS_BOTTOMALIGN 0x4L
#define SBS_HORZ 0L
#define SBS_LEFTALIGN 0x2L
#define SBS_RIGHTALIGN 0x4L
#define SBS_SIZEBOX 0x8L
#define SBS_SIZEBOXBOTTOMRIGHTALIGN 0x4L
#define SBS_SIZEBOXTOPLEFTALIGN 0x2L
#define SBS_SIZEGRIP 0x10L
#define SBS_TOPALIGN 0x2L
#define SBS_VERT 0x1L
#define SS_BITMAP 0xeL
#define SS_BLACKFRAME 0x7L
#define SS_BLACKRECT 0x4L
#define SS_CENTER 0x1L
#define SS_CENTERIMAGE 0x200L
#define SS_ENHMETAFILE 0xfL
#define SS_ETCHEDFRAME 0x12L
#define SS_ETCHEDHORZ 0x10L
#define SS_ETCHEDVERT 0x11L
#define SS_GRAYFRAME 0x8L
#define SS_GRAYRECT 0x5L
#define SS_ICON 0x3L
#define SS_LEFT 0L
#define SS_LEFTNOWORDWRAP 0xcL
#define SS_NOPREFIX 0x80L
#define SS_NOTIFY 0x100L
#define SS_OWNERDRAW 0xdL
#define SS_REALSIZEIMAGE 0x800L
#define SS_RIGHT 0x2L
#define SS_RIGHTJUST 0x400L
#define SS_SIMPLE 0xbL
#define SS_SUNKEN 0x1000L
#define SS_USERITEM 0xaL
#define SS_WHITEFRAME 0x9L
#define SS_WHITERECT 0x6L
#define DS_3DLOOK 0x4L
#define DS_ABSALIGN 0x1L
#define DS_CENTER 0x800L
#define DS_CENTERMOUSE 0x1000L
#define DS_CONTEXTHELP 0x2000L
#define DS_CONTROL 0x400L
#define DS_FIXEDSYS 0x8L
#define DS_LOCALEDIT 0x20L
#define DS_MODALFRAME 0x80L
#define DS_NOFAILCREATE 0x10L
#define DS_NOIDLEMSG 0x100L
#define DS_SETFONT 0x40L
#define DS_SETFOREGROUND 0x200L
#define DS_SYSMODAL 0x2L
/* A dialog control. */
typedef struct rc_dialog_control
{
/* Next control. */
struct rc_dialog_control *next;
/* ID. */
rc_uint_type id;
/* Style. */
rc_uint_type style;
/* Extended style. */
rc_uint_type exstyle;
/* X coordinate. */
rc_uint_type x;
/* Y coordinate. */
rc_uint_type y;
/* Width. */
rc_uint_type width;
/* Height. */
rc_uint_type height;
/* Class name. */
rc_res_id class;
/* Associated text. */
rc_res_id text;
/* Extra data for the window procedure. */
struct rc_rcdata_item *data;
/* Help ID. Only used in an extended dialog. */
rc_uint_type help;
} rc_dialog_control;
struct __attribute__ ((__packed__)) bin_dialog_control
{
bfd_byte style[4];
bfd_byte exstyle[4];
bfd_byte x[2];
bfd_byte y[2];
bfd_byte width[2];
bfd_byte height[2];
bfd_byte id[2];
};
#define BIN_DIALOG_CONTROL_SIZE 18
struct __attribute__ ((__packed__)) bin_dialogex_control
{
bfd_byte help[4];
bfd_byte exstyle[4];
bfd_byte style[4];
bfd_byte x[2];
bfd_byte y[2];
bfd_byte width[2];
bfd_byte height[2];
bfd_byte id[4];
};
#define BIN_DIALOGEX_CONTROL_SIZE 24
/* Control classes. These can be used as the ID field in a rc_dialog_control. */
#define CTL_BUTTON 0x80
#define CTL_EDIT 0x81
#define CTL_STATIC 0x82
#define CTL_LISTBOX 0x83
#define CTL_SCROLLBAR 0x84
#define CTL_COMBOBOX 0x85
/* A fontdir resource is a list of rc_fontdir. */
typedef struct rc_fontdir
{
struct rc_fontdir *next;
/* Index of font entry. */
rc_uint_type index;
/* Length of font information. */
rc_uint_type length;
/* Font information. */
const bfd_byte *data;
} rc_fontdir;
struct __attribute__ ((__packed__)) bin_fontdir_item
{
bfd_byte index[2];
bfd_byte header[54];
bfd_byte device_name[1];
/* bfd_byte face_name[]; */
};
/* A group_icon resource is a list of rc_group_icon. */
typedef struct rc_group_icon
{
/* Next icon in group. */
struct rc_group_icon *next;
/* Width. */
bfd_byte width;
/* Height. */
bfd_byte height;
/* Color count. */
bfd_byte colors;
/* Planes. */
rc_uint_type planes;
/* Bits per pixel. */
rc_uint_type bits;
/* Number of bytes in cursor resource. */
rc_uint_type bytes;
/* Index of cursor resource. */
rc_uint_type index;
} rc_group_icon;
struct __attribute__ ((__packed__)) bin_group_icon
{
bfd_byte sig1[2];
bfd_byte sig2[2];
bfd_byte count[2];
};
#define BIN_GROUP_ICON_SIZE 6
struct __attribute__ ((__packed__)) bin_group_icon_item
{
bfd_byte width[1];
bfd_byte height[1];
bfd_byte colors[1];
bfd_byte pad[1];
bfd_byte planes[2];
bfd_byte bits[2];
bfd_byte bytes[4];
bfd_byte index[2];
};
#define BIN_GROUP_ICON_ITEM_SIZE 14
/* A menu resource. */
typedef struct rc_menu
{
/* List of menuitems. */
struct rc_menuitem *items;
/* Help ID. I don't think there is any way to set this in an rc
file, but it can appear in the binary format. */
rc_uint_type help;
} rc_menu;
struct __attribute__ ((__packed__)) bin_menu
{
bfd_byte sig1[2];
bfd_byte sig2[2];
};
#define BIN_MENU_SIZE 4
struct __attribute__ ((__packed__)) bin_menuex
{
bfd_byte sig1[2];
bfd_byte sig2[2];
bfd_byte help[4];
};
#define BIN_MENUEX_SIZE 8
/* A menu resource is a list of rc_menuitem. */
typedef struct rc_menuitem
{
/* Next menu item. */
struct rc_menuitem *next;
/* Type. In a normal menu, rather than a menuex, this is the flags
field. */
rc_uint_type type;
/* State. This is only used in a menuex. */
rc_uint_type state;
/* Id. */
rc_uint_type id;
/* Unicode text. */
unichar *text;
/* Popup menu items for a popup. */
struct rc_menuitem *popup;
/* Help ID. This is only used in a menuex. */
rc_uint_type help;
} rc_menuitem;
struct __attribute__ ((__packed__)) bin_menuitem
{
bfd_byte flags[2];
bfd_byte id[2];
};
#define BIN_MENUITEM_SIZE 4
#define BIN_MENUITEM_POPUP_SIZE 2
struct __attribute__ ((__packed__)) bin_menuitemex
{
bfd_byte type[4];
bfd_byte state[4];
bfd_byte id[4];
bfd_byte flags[2];
/* unicode text */
/* if popup: align, bfd_byte help[4], align, bin_menuitemex[]; */
};
#define BIN_MENUITEMEX_SIZE 14
/* Menu item flags. These can appear in the flags field of a rc_menuitem. */
#define MENUITEM_GRAYED 0x001
#define MENUITEM_INACTIVE 0x002
#define MENUITEM_BITMAP 0x004
#define MENUITEM_OWNERDRAW 0x100
#define MENUITEM_CHECKED 0x008
#define MENUITEM_POPUP 0x010
#define MENUITEM_MENUBARBREAK 0x020
#define MENUITEM_MENUBREAK 0x040
#define MENUITEM_ENDMENU 0x080
#define MENUITEM_HELP 0x4000
/* An rcdata resource is a pointer to a list of rc_rcdata_item. */
typedef struct rc_rcdata_item
{
/* Next data item. */
struct rc_rcdata_item *next;
/* Type of data. */
enum
{
RCDATA_WORD,
RCDATA_DWORD,
RCDATA_STRING,
RCDATA_WSTRING,
RCDATA_BUFFER
} type;
union
{
rc_uint_type word;
rc_uint_type dword;
struct
{
rc_uint_type length;
const char *s;
} string;
struct
{
rc_uint_type length;
const unichar *w;
} wstring;
struct
{
rc_uint_type length;
const bfd_byte *data;
} buffer;
} u;
} rc_rcdata_item;
/* A stringtable resource is a pointer to a rc_stringtable. */
typedef struct rc_stringtable
{
/* Each stringtable resource is a list of 16 unicode strings. */
struct
{
/* Length of string. */
rc_uint_type length;
/* String data if length > 0. */
unichar *string;
} strings[16];
} rc_stringtable;
/* A versioninfo resource points to a rc_versioninfo. */
typedef struct rc_versioninfo
{
/* Fixed version information. */
struct rc_fixed_versioninfo *fixed;
/* Variable version information. */
struct rc_ver_info *var;
} rc_versioninfo;
struct __attribute__ ((__packed__)) bin_versioninfo
{
bfd_byte size[2];
bfd_byte fixed_size[2];
bfd_byte sig2[2];
};
#define BIN_VERSIONINFO_SIZE 6
/* The fixed portion of a versioninfo resource. */
typedef struct rc_fixed_versioninfo
{
/* The file version, which is two 32 bit integers. */
rc_uint_type file_version_ms;
rc_uint_type file_version_ls;
/* The product version, which is two 32 bit integers. */
rc_uint_type product_version_ms;
rc_uint_type product_version_ls;
/* The file flags mask. */
rc_uint_type file_flags_mask;
/* The file flags. */
rc_uint_type file_flags;
/* The OS type. */
rc_uint_type file_os;
/* The file type. */
rc_uint_type file_type;
/* The file subtype. */
rc_uint_type file_subtype;
/* The date, which in Windows is two 32 bit integers. */
rc_uint_type file_date_ms;
rc_uint_type file_date_ls;
} rc_fixed_versioninfo;
struct __attribute__ ((__packed__)) bin_fixed_versioninfo
{
bfd_byte sig1[4];
bfd_byte sig2[4];
bfd_byte file_version[4];
bfd_byte file_version_ls[4];
bfd_byte product_version_ms[4];
bfd_byte product_version_ls[4];
bfd_byte file_flags_mask[4];
bfd_byte file_flags[4];
bfd_byte file_os[4];
bfd_byte file_type[4];
bfd_byte file_subtype[4];
bfd_byte file_date_ms[4];
bfd_byte file_date_ls[4];
};
#define BIN_FIXED_VERSIONINFO_SIZE 52
/* A list of string version information. */
typedef struct rc_ver_stringtable
{
/* Next item. */
struct rc_ver_stringtable *next;
/* Language. */
unichar *language;
/* Strings. */
struct rc_ver_stringinfo *strings;
} rc_ver_stringtable;
/* A list of variable version information. */
typedef struct rc_ver_info
{
/* Next item. */
struct rc_ver_info *next;
/* Type of data. */
enum { VERINFO_STRING, VERINFO_VAR } type;
union
{
/* StringFileInfo data. */
struct
{
/* String tables. */
struct rc_ver_stringtable *stringtables;
} string;
/* VarFileInfo data. */
struct
{
/* Key. */
unichar *key;
/* Values. */
struct rc_ver_varinfo *var;
} var;
} u;
} rc_ver_info;
struct __attribute__ ((__packed__)) bin_ver_info
{
bfd_byte size[2];
bfd_byte sig1[2];
bfd_byte sig2[2];
};
#define BIN_VER_INFO_SIZE 6
/* A list of string version information. */
typedef struct rc_ver_stringinfo
{
/* Next string. */
struct rc_ver_stringinfo *next;
/* Key. */
unichar *key;
/* Value. */
unichar *value;
} rc_ver_stringinfo;
/* A list of variable version information. */
typedef struct rc_ver_varinfo
{
/* Next item. */
struct rc_ver_varinfo *next;
/* Language ID. */
rc_uint_type language;
/* Character set ID. */
rc_uint_type charset;
} rc_ver_varinfo;
typedef struct rc_toolbar_item
{
struct rc_toolbar_item *next;
struct rc_toolbar_item *prev;
rc_res_id id;
} rc_toolbar_item;
struct __attribute__ ((__packed__)) bin_messagetable_item
{
bfd_byte length[2];
bfd_byte flags[2];
bfd_byte data[1];
};
#define BIN_MESSAGETABLE_ITEM_SIZE 4
#define MESSAGE_RESOURCE_UNICODE 0x0001
struct __attribute__ ((__packed__)) bin_messagetable_block
{
bfd_byte lowid[4];
bfd_byte highid[4];
bfd_byte offset[4];
};
#define BIN_MESSAGETABLE_BLOCK_SIZE 12
struct __attribute__ ((__packed__)) bin_messagetable
{
bfd_byte cblocks[4];
struct bin_messagetable_block items[1];
};
#define BIN_MESSAGETABLE_SIZE 8
typedef struct rc_toolbar
{
rc_uint_type button_width;
rc_uint_type button_height;
rc_uint_type nitems;
rc_toolbar_item *items;
} rc_toolbar;
struct __attribute__ ((__packed__)) bin_toolbar
{
bfd_byte button_width[4];
bfd_byte button_height[4];
bfd_byte nitems[4];
/* { bfd_byte id[4]; } * nitems; */
};
#define BIN_TOOLBAR_SIZE 12
extern int target_is_bigendian;
typedef struct windres_bfd
{
bfd *abfd;
asection *sec;
rc_uint_type kind : 4;
} windres_bfd;
#define WR_KIND_TARGET 0
#define WR_KIND_BFD 1
#define WR_KIND_BFD_BIN_L 2
#define WR_KIND_BFD_BIN_B 3
#define WR_KIND(PTR) (PTR)->kind
#define WR_SECTION(PTR) (PTR)->sec
#define WR_BFD(PTR) (PTR)->abfd
extern void set_windres_bfd_content (windres_bfd *, const void *, rc_uint_type, rc_uint_type);
extern void get_windres_bfd_content (windres_bfd *, void *, rc_uint_type, rc_uint_type);
extern void windres_put_8 (windres_bfd *, void *, rc_uint_type);
extern void windres_put_16 (windres_bfd *, void *, rc_uint_type);
extern void windres_put_32 (windres_bfd *, void *, rc_uint_type);
extern rc_uint_type windres_get_8 (windres_bfd *, const void *, rc_uint_type);
extern rc_uint_type windres_get_16 (windres_bfd *, const void *, rc_uint_type);
extern rc_uint_type windres_get_32 (windres_bfd *, const void *, rc_uint_type);
extern void set_windres_bfd (windres_bfd *, bfd *, asection *, rc_uint_type);
extern void set_windres_bfd_endianness (windres_bfd *, int);
#endif
|