From 64e05779d2bf697b3c5f9f53234839f4f352a408 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 21 Aug 2009 09:53:51 +0200 Subject: talloc: update talloc.exports and talloc.signatures metze --- lib/talloc/talloc.signatures | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/talloc/talloc.signatures') diff --git a/lib/talloc/talloc.signatures b/lib/talloc/talloc.signatures index 96b71f737a..00fb4a3296 100644 --- a/lib/talloc/talloc.signatures +++ b/lib/talloc/talloc.signatures @@ -17,6 +17,8 @@ int _talloc_free (void *, const char *); int talloc_increase_ref_count (const void *); int talloc_is_parent (const void *, const void *); int talloc_unlink (const void *, void *); +int talloc_version_major (void); +int talloc_version_minor (void); size_t talloc_get_size (const void *); size_t talloc_reference_count (const void *); size_t talloc_total_blocks (const void *); @@ -42,7 +44,6 @@ void *talloc_pool (const void *, size_t); void *_talloc_realloc_array (const void *, void *, size_t, unsigned int, const char *); void *_talloc_realloc (const void *, void *, size_t, const char *); void *talloc_realloc_fn (const void *, void *, size_t); -void *_talloc_reference (const void *, const void *); void *_talloc_reference_loc (const void *, const void *, const char *); void *talloc_reparent (const void *, const void *, const void *); void talloc_report (const void *, FILE *); @@ -51,9 +52,10 @@ void talloc_report_depth_file (const void *, int, int, FILE *); void talloc_report_full (const void *, FILE *); void talloc_set_abort_fn (void (*) (const char *)); void _talloc_set_destructor (const void *, int (*) (void *)); +void talloc_set_log_fn (void (*) (const char *)); +void talloc_set_log_stderr (void); void talloc_set_name_const (const void *, const char *); void talloc_show_parents (const void *, FILE *); -void *_talloc_steal (const void *, const void *); void *_talloc_steal_loc (const void *, const void *, const char *); void *_talloc_zero_array (const void *, size_t, unsigned int, const char *); void *_talloc_zero (const void *, size_t, const char *); -- cgit