* trad-core.c, bfd.c, ../include/bfd.h: Various fixes for PMAX
[deliverable/binutils-gdb.git] / bfd / seclet.h
CommitLineData
e98e6ec1
SC
1typedef enum
2{
3
4 bfd_indirect_seclet,
5
6} bfd_seclet_enum_type;
7
8
9struct 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
27typedef struct bfd_seclet_struct bfd_seclet_type;
28
29bfd_seclet_type *EXFUN(bfd_new_seclet,(bfd*,asection*));
This page took 0.024887 seconds and 4 git commands to generate.