You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
433 B
30 lines
433 B
|
35 years ago
|
typedef enum
|
||
|
|
{
|
||
|
|
|
||
|
|
bfd_indirect_seclet,
|
||
|
|
|
||
|
|
} bfd_seclet_enum_type;
|
||
|
|
|
||
|
|
|
||
|
|
struct bfd_seclet_struct
|
||
|
|
{
|
||
|
|
struct bfd_seclet_struct *next;
|
||
|
|
bfd_seclet_enum_type type;
|
||
|
|
unsigned int offset;
|
||
|
|
unsigned int size;
|
||
|
|
union
|
||
|
|
{
|
||
|
|
struct
|
||
|
|
{
|
||
|
|
asection *section;
|
||
|
|
asymbol **symbols;
|
||
|
|
|
||
|
|
} indirect;
|
||
|
|
}
|
||
|
|
u;
|
||
|
|
};
|
||
|
|
|
||
|
|
typedef struct bfd_seclet_struct bfd_seclet_type;
|
||
|
|
|
||
|
|
bfd_seclet_type *EXFUN(bfd_new_seclet,(bfd*,asection*));
|