diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-05-12 14:28:46 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-05-12 14:28:46 +0000 |
commit | 974813f0d4afb6c14ed27c48ab24b19932557f9f (patch) | |
tree | 59213acfa08aa1e979f360a1e0cc935b5b85803c /source/rpc_parse/parse_misc.c | |
parent | ad5447220032b7f80251e0a5123f7f96b496ffcd (diff) | |
download | samba-974813f0d4afb6c14ed27c48ab24b19932557f9f.tar.gz samba-974813f0d4afb6c14ed27c48ab24b19932557f9f.tar.xz samba-974813f0d4afb6c14ed27c48ab24b19932557f9f.zip |
added spool_io_printer_driver_info_level_6()
thsi function and the associated header structure were autogenerated
using a little awk based code geerator I wroe ths evening. I'll commit
that next ...
Diffstat (limited to 'source/rpc_parse/parse_misc.c')
-rw-r--r-- | source/rpc_parse/parse_misc.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source/rpc_parse/parse_misc.c b/source/rpc_parse/parse_misc.c index d19fe47a0df..b12688d3621 100644 --- a/source/rpc_parse/parse_misc.c +++ b/source/rpc_parse/parse_misc.c @@ -1380,3 +1380,15 @@ BOOL smb_io_unistr3(char *desc, UNISTR3 *name, prs_struct *ps, int depth) return True; } + + +/******************************************************************* + Stream a uint64_struct + ********************************************************************/ +BOOL prs_uint64(char *name, prs_struct *ps, int depth, UINT64_S *data64) +{ + return prs_uint32(name, ps, depth+1, &data64->low) && + prs_uint32(name, ps, depth+1, &data64->high); +} + + |