summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-10-14 15:57:03 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-10-14 15:57:03 +0200
commit4577fb5a3b35b8c7ffb1bf3e43f4aa8143c3746d (patch)
tree5a2ec8cea01e33e884344e88c450621d6423b6d9
parenta9d8ed748e06b6c8d30aa554052ab3b63f4e93ea (diff)
downloadsamba-4577fb5a3b35b8c7ffb1bf3e43f4aa8143c3746d.tar.gz
samba-4577fb5a3b35b8c7ffb1bf3e43f4aa8143c3746d.tar.bz2
samba-4577fb5a3b35b8c7ffb1bf3e43f4aa8143c3746d.zip
Remove unused types.
-rw-r--r--source3/librpc/idl/idl_types.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/source3/librpc/idl/idl_types.h b/source3/librpc/idl/idl_types.h
index f21f3e660d..9885ca5bf6 100644
--- a/source3/librpc/idl/idl_types.h
+++ b/source3/librpc/idl/idl_types.h
@@ -5,33 +5,16 @@
#define STR_NOTERM LIBNDR_FLAG_STR_NOTERM
#define STR_NULLTERM LIBNDR_FLAG_STR_NULLTERM
#define STR_BYTESIZE LIBNDR_FLAG_STR_BYTESIZE
-#define STR_FIXLEN32 LIBNDR_FLAG_STR_FIXLEN32
-#define STR_FIXLEN15 LIBNDR_FLAG_STR_FIXLEN15
#define STR_CONFORMANT LIBNDR_FLAG_STR_CONFORMANT
#define STR_CHARLEN LIBNDR_FLAG_STR_CHARLEN
#define STR_UTF8 LIBNDR_FLAG_STR_UTF8
/*
- a UCS2 string prefixed with [size], 32 bits
-*/
-#define lstring [flag(STR_SIZE4)] string
-
-/*
a null terminated UCS2 string
*/
#define nstring [flag(STR_NULLTERM)] string
/*
- fixed length 32 character UCS-2 string
-*/
-#define string32 [flag(STR_FIXLEN32)] string
-
-/*
- fixed length 16 character ascii string
-*/
-#define astring15 [flag(STR_ASCII|STR_FIXLEN15)] string
-
-/*
an ascii string prefixed with [offset] [length], both 32 bits
null terminated
*/