]>
Commit | Line | Data |
---|---|---|
e98e6ec1 SC |
1 | typedef enum |
2 | { | |
3 | ||
4 | bfd_indirect_seclet, | |
5 | ||
6 | } bfd_seclet_enum_type; | |
7 | ||
8 | ||
9 | struct bfd_seclet_struct | |
10 | { | |
11 | struct bfd_seclet_struct *next; | |
12 | bfd_seclet_enum_type type; | |
13 | unsigned int offset; | |
14 | unsigned int size; | |
15 | union | |
16 | { | |
17 | struct | |
18 | { | |
19 | asection *section; | |
20 | asymbol **symbols; | |
21 | ||
22 | } indirect; | |
23 | } | |
24 | u; | |
25 | }; | |
26 | ||
27 | typedef struct bfd_seclet_struct bfd_seclet_type; | |
28 | ||
29 | bfd_seclet_type *EXFUN(bfd_new_seclet,(bfd*,asection*)); |