diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-09-03 12:10:34 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:58:31 -0500 |
commit | 6a2422932bb36183ab2ec8d0909de45c3fc8db35 (patch) | |
tree | 0f47ec124e3f73318b85a8accf31af7ccc01d910 /source4/librpc/ndr/libndr.h | |
parent | 905dd977fa692ef01676b92396f25070a1d194d3 (diff) | |
download | samba-6a2422932bb36183ab2ec8d0909de45c3fc8db35.tar.gz samba-6a2422932bb36183ab2ec8d0909de45c3fc8db35.tar.bz2 samba-6a2422932bb36183ab2ec8d0909de45c3fc8db35.zip |
r2204: added [flag(RELATIVE_CURRENT)] to change [relative] pointer behaviour
for this struct and all sub-structures to be like spoolss relative
pointers (where offset is relative to current position).
volker will test this for me :)
(This used to be commit bd45329a3fb55a5d9f006ad601ae26a80b9a563f)
Diffstat (limited to 'source4/librpc/ndr/libndr.h')
-rw-r--r-- | source4/librpc/ndr/libndr.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/librpc/ndr/libndr.h b/source4/librpc/ndr/libndr.h index 9940dc2c05..8894877721 100644 --- a/source4/librpc/ndr/libndr.h +++ b/source4/librpc/ndr/libndr.h @@ -115,6 +115,10 @@ struct ndr_print { /* used to check if alignment padding is zero */ #define LIBNDR_FLAG_PAD_CHECK (1<<18) +/* used to indicate spoolss style relative pointers (relative to current + offset, not base) */ +#define LIBNDR_FLAG_RELATIVE_CURRENT (1<<19) + /* useful macro for debugging */ #define NDR_PRINT_DEBUG(type, p) ndr_print_debug((ndr_print_fn_t)ndr_print_ ##type, #p, p) |