diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-11-25 11:20:09 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:06:07 -0500 |
commit | e547588368b7454a412fb6376a6052fd1e027334 (patch) | |
tree | 4dd89855127bcd76fd0d45d16d168dc18c604eef /source4/librpc/ndr/libndr.h | |
parent | a99bf332940f48ae0a503ad6a4909c490626f612 (diff) | |
download | samba-e547588368b7454a412fb6376a6052fd1e027334.tar.gz samba-e547588368b7454a412fb6376a6052fd1e027334.tar.bz2 samba-e547588368b7454a412fb6376a6052fd1e027334.zip |
r3956: start to decode the repsFrom and repsTo fileds but not ready
metze
(This used to be commit 44f168c44de908fdf38b39aae8bf10e80206410a)
Diffstat (limited to 'source4/librpc/ndr/libndr.h')
-rw-r--r-- | source4/librpc/ndr/libndr.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source4/librpc/ndr/libndr.h b/source4/librpc/ndr/libndr.h index 044b7129f8..be02a8b72a 100644 --- a/source4/librpc/ndr/libndr.h +++ b/source4/librpc/ndr/libndr.h @@ -198,9 +198,15 @@ enum ndr_err_code { #define NDR_SIZE_ALIGN(t, n, flags) ((flags & LIBNDR_FLAG_NOALIGN)?(t):(((t) + (n-1)) & ~(n-1))) #define ndr_size_uint8(t, p, flags) (NDR_SIZE_ALIGN(t, 1, flags) + 1) #define ndr_size_uint16(t, p, flags) (NDR_SIZE_ALIGN(t, 2, flags) + 2) +#define ndr_size_int32(t, p, flags) (NDR_SIZE_ALIGN(t, 4, flags) + 4) #define ndr_size_uint32(t, p, flags) (NDR_SIZE_ALIGN(t, 4, flags) + 4) +#define ndr_size_int64(t, p, flags) (NDR_SIZE_ALIGN(t, 8, flags) + 8) +#define ndr_size_uint64(t, p, flags) (NDR_SIZE_ALIGN(t, 8, flags) + 8) #define ndr_size_ptr(t, p, flags) (NDR_SIZE_ALIGN(t, 4, flags) + 4) +#define ndr_size_NTTIME(t, p, flags) ndr_size_uint64(t, p, flags) +#define ndr_size_NTTIME_1sec(t, p, flags) ndr_size_NTTIME(t, p, flags) + /* these are used to make the error checking on each element in libndr less tedious, hopefully making the code more readable */ #define NDR_CHECK(call) do { NTSTATUS _status; \ |