1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-11 16:58:40 +03:00

talloc: update talloc.exports and talloc.signatures

metze
This commit is contained in:
Stefan Metzmacher 2009-08-21 09:53:51 +02:00 committed by Andrew Tridgell
parent 6c9ace27c5
commit 64e05779d2
2 changed files with 8 additions and 4 deletions

View File

@ -30,7 +30,6 @@
_talloc_realloc;
_talloc_realloc_array;
talloc_realloc_fn;
_talloc_reference;
talloc_reference_count;
_talloc_reference_loc;
talloc_reparent;
@ -40,10 +39,11 @@
talloc_report_full;
talloc_set_abort_fn;
_talloc_set_destructor;
talloc_set_log_fn;
talloc_set_log_stderr;
talloc_set_name;
talloc_set_name_const;
talloc_show_parents;
_talloc_steal;
_talloc_steal_loc;
talloc_strdup;
talloc_strdup_append;
@ -57,6 +57,8 @@
talloc_vasprintf;
talloc_vasprintf_append;
talloc_vasprintf_append_buffer;
talloc_version_major;
talloc_version_minor;
_talloc_zero;
_talloc_zero_array;
talloc_free;

View File

@ -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 *);