diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-04-02 20:57:27 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:11:23 -0500 |
commit | 3b8c824c16a7649057c87fd33ac17d496976bdfb (patch) | |
tree | 6584c2f3c4f98c5c2107228df9e6b5f44b10471b /source4/librpc/ndr/libndr.h | |
parent | 3abce73193dcc393fee5ca6e326678009e87cbd7 (diff) | |
download | samba-3b8c824c16a7649057c87fd33ac17d496976bdfb.tar.gz samba-3b8c824c16a7649057c87fd33ac17d496976bdfb.tar.bz2 samba-3b8c824c16a7649057c87fd33ac17d496976bdfb.zip |
r6180: Use token_lists for storing switch values
(This used to be commit f66e11137eed69b44f0739f1064625cbd96243bd)
Diffstat (limited to 'source4/librpc/ndr/libndr.h')
-rw-r--r-- | source4/librpc/ndr/libndr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/librpc/ndr/libndr.h b/source4/librpc/ndr/libndr.h index 15ac1b2d4c..dd775d62ad 100644 --- a/source4/librpc/ndr/libndr.h +++ b/source4/librpc/ndr/libndr.h @@ -86,6 +86,7 @@ struct ndr_push_save { struct ndr_print { uint32_t flags; /* LIBNDR_FLAG_* */ uint32_t depth; + struct ndr_token_list *switch_list; void (*print)(struct ndr_print *, const char *, ...); void *private; }; @@ -248,5 +249,4 @@ typedef NTSTATUS (*ndr_push_const_fn_t)(struct ndr_push *, int ndr_flags, const typedef NTSTATUS (*ndr_pull_flags_fn_t)(struct ndr_pull *, int ndr_flags, void *); typedef void (*ndr_print_fn_t)(struct ndr_print *, const char *, void *); typedef void (*ndr_print_function_t)(struct ndr_print *, const char *, int, void *); -typedef void (*ndr_print_union_fn_t)(struct ndr_print *, const char *, uint32_t, void *); |