]> Git Repo - binutils.git/blob - bfd/seclet.h
* bfd.h : new target entr, bfd_relax_section
[binutils.git] / bfd / seclet.h
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*));
This page took 0.024906 seconds and 4 git commands to generate.