2 * General type definitions
4 * Copyright 1998 Bertho A. Stultiens (BS)
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #ifndef __WRC_WRCTYPES_H
22 #define __WRC_WRCTYPES_H
32 #ifndef VS_FFI_SIGNATURE
36 /* Memory/load flags */
37 #define WRC_MO_MOVEABLE 0x0010
38 #define WRC_MO_PURE 0x0020
39 #define WRC_MO_PRELOAD 0x0040
40 #define WRC_MO_DISCARDABLE 0x1000
42 /* Resource type IDs */
43 #define WRC_RT_CURSOR (1)
44 #define WRC_RT_BITMAP (2)
45 #define WRC_RT_ICON (3)
46 #define WRC_RT_MENU (4)
47 #define WRC_RT_DIALOG (5)
48 #define WRC_RT_STRING (6)
49 #define WRC_RT_FONTDIR (7)
50 #define WRC_RT_FONT (8)
51 #define WRC_RT_ACCELERATOR (9)
52 #define WRC_RT_RCDATA (10)
53 #define WRC_RT_MESSAGETABLE (11)
54 #define WRC_RT_GROUP_CURSOR (12)
55 #define WRC_RT_GROUP_ICON (14)
56 #define WRC_RT_VERSION (16)
57 #define WRC_RT_DLGINCLUDE (17)
58 #define WRC_RT_PLUGPLAY (19)
59 #define WRC_RT_VXD (20)
60 #define WRC_RT_ANICURSOR (21)
61 #define WRC_RT_ANIICON (22)
62 #define WRC_RT_HTML (23)
63 #define WRC_RT_DLGINIT (240)
64 #define WRC_RT_TOOLBAR (241)
66 /* Default class type IDs */
67 #define CT_BUTTON 0x80
69 #define CT_STATIC 0x82
70 #define CT_LISTBOX 0x83
71 #define CT_SCROLLBAR 0x84
72 #define CT_COMBOBOX 0x85
74 /* Byteordering defines */
75 #define WRC_BO_NATIVE 0x00
76 #define WRC_BO_LITTLE 0x01
77 #define WRC_BO_BIG 0x02
79 #define WRC_LOBYTE(w) ((WORD)(w) & 0xff)
80 #define WRC_HIBYTE(w) (((WORD)(w) >> 8) & 0xff)
81 #define WRC_LOWORD(d) ((DWORD)(d) & 0xffff)
82 #define WRC_HIWORD(d) (((DWORD)(d) >> 16) & 0xffff)
83 #define BYTESWAP_WORD(w) ((WORD)(((WORD)WRC_LOBYTE(w) << 8) + (WORD)WRC_HIBYTE(w)))
84 #define BYTESWAP_DWORD(d) ((DWORD)(((DWORD)BYTESWAP_WORD(WRC_LOWORD(d)) << 16) + ((DWORD)BYTESWAP_WORD(WRC_HIWORD(d)))))
86 /* Binary resource structure */
87 #define RES_BLOCKSIZE 512
90 unsigned int allocsize; /* Allocated datablock size */
91 unsigned int size; /* Actual size of data */
92 unsigned int dataidx; /* Tag behind the resource-header */
96 /* Resource strings are slightly more complex because they include '\0' */
97 enum str_e {str_char, str_unicode};
99 typedef struct string {
108 /* Resources are identified either by name or by number */
109 enum name_e {name_str, name_ord};
111 typedef struct name_id {
119 /* Language definitions */
120 typedef struct language {
125 typedef DWORD characts_t;
126 typedef DWORD version_t;
129 language_t *language;
131 characts_t *characts;
134 typedef struct font_id {
142 typedef struct style {
148 /* These are in the same order (and ordinal) as the RT_xxx
149 * defines. This is _required_.
150 * I rolled my own numbers for the win32 extension that are
151 * documented, but generate either old RT_xxx numbers, or
152 * don't have an ordinal associated (user type).
153 * I don't know any specs for those noted such, for that matter,
154 * I don't even know whether they can be generated other than by
155 * using a user-type resource.
171 res_13, /* Hm, wonder why its not used... */
175 res_dlginc, /* Not implemented, no layout available */
177 res_pnp, /* Not implemented, no layout available */
178 res_vxd, /* Not implemented, no layout available */
181 res_html, /* Not implemented, no layout available */
183 res_dlginit = WRC_RT_DLGINIT, /* 240 */
184 res_toolbar = WRC_RT_TOOLBAR, /* 241 */
189 /* Raw bytes in a row... */
190 typedef struct raw_data {
193 lvc_t lvc; /* Localized data */
196 /* Dialog structures */
197 typedef struct control {
198 struct control *next; /* List of controls */
199 struct control *prev;
200 name_id_t *ctlclass; /* ControlClass */
201 name_id_t *title; /* Title of control */
203 int x; /* Position */
205 int width; /* Size */
207 style_t *style; /* Style */
209 DWORD helpid; /* EX: */
210 int gotstyle; /* Used to determine whether the default */
211 int gotexstyle; /* styles must be set */
213 raw_data_t *extra; /* EX: number of extra bytes in resource */
216 typedef struct dialog {
218 int x; /* Position */
220 int width; /* Size */
222 style_t *style; /* Style */
224 DWORD helpid; /* EX: */
225 int gotstyle; /* Used to determine whether the default */
226 int gotexstyle; /* styles must be set */
237 /* Menu structures */
238 typedef struct menu_item {
239 struct menu_item *next;
240 struct menu_item *prev;
241 struct menu_item *popup;
253 typedef struct menu {
260 typedef struct itemex_opt
275 typedef struct font {
280 typedef struct fontdir {
288 typedef struct icon_header {
289 WORD reserved; /* Don't know, should be 0 I guess */
290 WORD type; /* Always 1 for icons */
291 WORD count; /* Number of packed icons in resource */
294 typedef struct icon_dir_entry {
295 BYTE width; /* From the SDK doc. */
305 typedef struct icon {
309 int id; /* Unique icon id within resource file */
310 int width; /* Field from the IconDirEntry */
318 typedef struct icon_group {
328 typedef struct cursor_header {
329 WORD reserved; /* Don't know, should be 0 I guess */
330 WORD type; /* Always 2 for cursors */
331 WORD count; /* Number of packed cursors in resource */
334 typedef struct cursor_dir_entry {
335 BYTE width; /* From the SDK doc. */
343 } cursor_dir_entry_t;
345 typedef struct cursor {
349 int id; /* Unique icon id within resource file */
350 int width; /* Field from the CursorDirEntry */
360 typedef struct cursor_group {
363 cursor_t *cursorlist;
368 * Animated cursors and icons
370 typedef struct aniheader {
371 DWORD structsize; /* Header size (36 bytes) */
372 DWORD frames; /* Number of unique icons in this cursor */
373 DWORD steps; /* Number of blits before the animation cycles */
374 DWORD cx; /* reserved, must be 0? */
375 DWORD cy; /* reserved, must be 0? */
376 DWORD bitcount; /* reserved, must be 0? */
377 DWORD planes; /* reserved, must be 0? */
378 DWORD rate; /* Default rate (1/60th of a second) if "rate" not present */
379 DWORD flags; /* Animation flag (1==AF_ICON, although both icons and cursors set this) */
382 typedef struct riff_tag {
387 typedef struct ani_curico {
392 typedef struct ani_any {
396 cursor_group_t *curg;
404 typedef struct bitmap {
409 typedef struct html {
414 typedef struct rcdata {
428 typedef struct msgtab_block {
429 DWORD idlo; /* Lowest id in the set */
430 DWORD idhi; /* Highest is in the set */
431 DWORD offset; /* Offset from resource start to first entry */
434 typedef struct msgtab_entry {
435 WORD length; /* Length of the data in bytes */
436 WORD flags; /* 0 for char, 1 for WCHAR */
437 /* {char}|{WCHAR} data[...]; */
440 typedef struct messagetable {
445 /* StringTable structures */
446 typedef struct stt_entry {
450 characts_t *characts;
454 typedef struct stringtable {
455 struct stringtable *next;
456 struct stringtable *prev;
461 stt_entry_t *entries;
464 /* VersionInfo structures */
465 enum ver_val_e {val_str, val_words, val_block};
467 struct ver_block; /* Forward ref */
469 typedef struct ver_words {
474 typedef struct ver_value {
475 struct ver_value *next;
476 struct ver_value *prev;
481 struct ver_block *block;
486 typedef struct ver_block {
487 struct ver_block *next;
488 struct ver_block *prev;
493 typedef struct versioninfo {
521 /* Accelerator structures */
522 #define WRC_AF_VIRTKEY 0x0001
523 #define WRC_AF_NOINVERT 0x0002
524 #define WRC_AF_SHIFT 0x0004
525 #define WRC_AF_CONTROL 0x0008
526 #define WRC_AF_ALT 0x0010
527 #define WRC_AF_ASCII 0x4000
529 typedef struct event {
537 typedef struct accelerator {
543 /* Toolbar structures */
544 typedef struct toolbar_item {
545 struct toolbar_item *next;
546 struct toolbar_item *prev;
550 typedef struct toolbar {
556 toolbar_item_t *items;
559 typedef struct dlginit {
565 /* A top-level resource node */
566 typedef struct resource {
567 struct resource *next;
568 struct resource *prev;
570 name_id_t *name; /* resource's name */
571 language_t *lan; /* Only used as a sorting key and c-name creation*/
577 cursor_group_t *curg;
592 void *overlay; /* To catch all types at once... */
594 res_t *binres; /* To binary converted resource */
595 char *c_name; /* BaseName in output */
600 typedef struct res32_count {
605 typedef struct res_count {
607 int count; /* win16 mode */
608 resource_t **rscarray;
610 res32_count_t *rsc32array; /* win32 mode */
615 typedef struct style_pair {