diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-02-12 16:16:35 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-02-12 16:16:35 +0100 |
commit | be25cdebcbdd0c26050076629d4edfbababe2852 (patch) | |
tree | 8a585867f353ebff8fbaaf460838b98609843dc4 /source4/librpc/idl | |
parent | 1f3e4e2deab26cae000268b4067ab8c2e2eee3ef (diff) | |
download | samba-be25cdebcbdd0c26050076629d4edfbababe2852.tar.gz samba-be25cdebcbdd0c26050076629d4edfbababe2852.tar.bz2 samba-be25cdebcbdd0c26050076629d4edfbababe2852.zip |
librpc: remove special support for fixed length strings
Fixed arrays with the charset() attribute do the same
metze
(This used to be commit 9620b86e96e8065c0ff6db0d95130ab53581d468)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/idl_types.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/source4/librpc/idl/idl_types.h b/source4/librpc/idl/idl_types.h index f21f3e660d..01524c2984 100644 --- a/source4/librpc/idl/idl_types.h +++ b/source4/librpc/idl/idl_types.h @@ -5,8 +5,6 @@ #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 @@ -22,16 +20,6 @@ #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 */ |