diff options
Diffstat (limited to 'libctf/ctf-impl.h')
-rw-r--r-- | libctf/ctf-impl.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libctf/ctf-impl.h b/libctf/ctf-impl.h index 46bceb4..7f47c68 100644 --- a/libctf/ctf-impl.h +++ b/libctf/ctf-impl.h @@ -333,7 +333,12 @@ struct ctf_file /* Allow the caller to change the name of link archive members. */ ctf_link_memb_name_changer_f *ctf_link_memb_name_changer; - void *ctf_link_memb_name_changer_arg; /* Argument for it. */ + void *ctf_link_memb_name_changer_arg; /* Argument for it. */ + + /* Allow the caller to filter out variables they don't care about. */ + ctf_link_variable_filter_f *ctf_link_variable_filter; + void *ctf_link_variable_filter_arg; /* Argument for it. */ + ctf_dynhash_t *ctf_add_processing; /* Types ctf_add_type is working on now. */ char *ctf_tmp_typeslice; /* Storage for slicing up type names. */ size_t ctf_tmp_typeslicelen; /* Size of the typeslice. */ |