From 4729c3db26f719cd936825d91b2514df7ac0e61b Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 4 Sep 2005 13:13:47 +0000 Subject: r10025: Add some utility functions for storing/loading tdr encoded data (This used to be commit bcd433bfc1450317b75e22942dee1c42bb24ae79) --- source4/lib/tdr/tdr.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source4/lib/tdr') diff --git a/source4/lib/tdr/tdr.h b/source4/lib/tdr/tdr.h index 9d9d2b8adf..a37a1efaaa 100644 --- a/source4/lib/tdr/tdr.h +++ b/source4/lib/tdr/tdr.h @@ -52,3 +52,6 @@ struct tdr_print { (s) = talloc_array_size(tdr, sizeof(*(s)), n); \ if ((n) && !(s)) return NT_STATUS_NO_MEMORY; \ } while (0) + +typedef NTSTATUS (*tdr_push_fn_t) (struct tdr_push *, void *); +typedef NTSTATUS (*tdr_pull_fn_t) (struct tdr_pull *, void *); -- cgit