summaryrefslogtreecommitdiff
path: root/source4/librpc/ndr/ndr_misc.h
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-11-16 04:22:20 +0000
committerTim Potter <tpot@samba.org>2003-11-16 04:22:20 +0000
commitfc55fd3e336576fea9a1029a8f2aedc2c4c21b06 (patch)
tree8b1e0ba316ff4087c114a08eea430469063973fa /source4/librpc/ndr/ndr_misc.h
parent274667be32531da20f76b7ffc039c45f86e59282 (diff)
downloadsamba-fc55fd3e336576fea9a1029a8f2aedc2c4c21b06.tar.gz
samba-fc55fd3e336576fea9a1029a8f2aedc2c4c21b06.tar.bz2
samba-fc55fd3e336576fea9a1029a8f2aedc2c4c21b06.zip
Added push/pull routines for uint8_buf IDL type used for spoolss buffers,
and possibly other places. (This used to be commit 8fcac6742f7b34d85ca7456aa33ffad88281d397)
Diffstat (limited to 'source4/librpc/ndr/ndr_misc.h')
-rw-r--r--source4/librpc/ndr/ndr_misc.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/source4/librpc/ndr/ndr_misc.h b/source4/librpc/ndr/ndr_misc.h
index cc3576b3e8..1621bf6e05 100644
--- a/source4/librpc/ndr/ndr_misc.h
+++ b/source4/librpc/ndr/ndr_misc.h
@@ -24,3 +24,9 @@
struct policy_handle {
char data[20];
};
+
+/* A buffer of uint8s */
+struct uint8_buf {
+ uint32 size;
+ uint8 *data;
+};