diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/ctf-api.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index ab6d753..dc7089e 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2020-06-26 Nick Alcock <nick.alcock@oracle.com> + + * ctf-api.h (ctf_arc_bufopen): New. + 2020-06-26 Pat Bernardi <bernardi@adacore.com> * elf/m68k.h: Add enum for GNU object attribute with floating point diff --git a/include/ctf-api.h b/include/ctf-api.h index efc4989..d6b05bc 100644 --- a/include/ctf-api.h +++ b/include/ctf-api.h @@ -263,6 +263,10 @@ extern void ctf_close (ctf_archive_t *); extern ctf_sect_t ctf_getdatasect (const ctf_file_t *); extern ctf_archive_t *ctf_get_arc (const ctf_file_t *); extern ctf_archive_t *ctf_arc_open (const char *, int *); +extern ctf_archive_t *ctf_arc_bufopen (const ctf_sect_t *, + const ctf_sect_t *, + const ctf_sect_t *, + int *); extern void ctf_arc_close (ctf_archive_t *); extern ctf_file_t *ctf_arc_open_by_name (const ctf_archive_t *, const char *, int *); |