diff options
author | Steve Chamberlain <steve@cygnus> | 1991-07-16 16:21:13 +0000 |
---|---|---|
committer | Steve Chamberlain <steve@cygnus> | 1991-07-16 16:21:13 +0000 |
commit | e8929c8dee1c530735068ca4eb11577752bf6f46 (patch) | |
tree | e842eff1bd86bdd047cb45ce83abe29b18e13095 /include | |
parent | 8fd6eb087bbd88fa0fa229efb09187b5493d5754 (diff) | |
download | gdb-e8929c8dee1c530735068ca4eb11577752bf6f46.zip gdb-e8929c8dee1c530735068ca4eb11577752bf6f46.tar.gz gdb-e8929c8dee1c530735068ca4eb11577752bf6f46.tar.bz2 |
*** empty log message ***
Diffstat (limited to 'include')
-rw-r--r-- | include/bfd.h | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/include/bfd.h b/include/bfd.h index 3f44d55..c4eeb84 100644 --- a/include/bfd.h +++ b/include/bfd.h @@ -1030,9 +1030,8 @@ PROTO(boolean, bfd_set_start_address,(bfd *, bfd_vma)); for archive members, or from file system if we have been called before); else determine modify time, cache it, and return it. -*;PROTO(long, bfd_get_mtime, (bfd *)); */ -#define bfd_sizeof_headers(abfd, reloc) \ +PROTO(long, bfd_get_mtime, (bfd *));#define bfd_sizeof_headers(abfd, reloc) \ BFD_SEND (abfd, _bfd_sizeof_headers, (abfd, reloc)) #define bfd_find_nearest_line(abfd, section, symbols, offset, filename_ptr, func, line_ptr) \ @@ -1050,13 +1049,27 @@ before); else determine modify time, cache it, and return it. #define bfd_stat_arch_elt(abfd, stat) \ BFD_SEND (abfd, _bfd_stat_arch_elt,(abfd, stat)) +#define bfd_coff_swap_aux_in(a,e,t,c,i) \ + BFD_SEND (a, _bfd_coff_swap_aux_in, (a,e,t,c,i)) + +#define bfd_coff_swap_sym_in(a,e,i) \ + BFD_SEND (a, _bfd_coff_swap_sym_in, (a,e,i)) + +#define bfd_coff_swap_lineno_in(a,e,i) \ + BFD_SEND ( a, _bfd_coff_swap_lineno_in, (a,e,i)) + /* What this does */ PROTO(symindex, bfd_get_next_mapent, (bfd *, symindex, carsym **)); /* Used whilst processing archives. Sets the head of the chain of bfds contained in an archive to @var{new_head}. (see chapter on archives) + */ PROTO(boolean, bfd_set_archive_head, (bfd *output, bfd *new_head)); +/* Hmm + +*/ +PROTO(bfd *, bfd_get_elt_at_index, (bfd *, int)); /* Initially provided a bfd containing an archive and NULL, opens a bfd on the first contained element and returns that. Subsequent calls to bfd_openr_next_archived_file should pass the archive and the previous |