diff options
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/idl_types.h | 6 | ||||
-rw-r--r-- | source4/librpc/idl/lsa.idl | 2 |
2 files changed, 1 insertions, 7 deletions
diff --git a/source4/librpc/idl/idl_types.h b/source4/librpc/idl/idl_types.h index e48df9ddfd..872883df4b 100644 --- a/source4/librpc/idl/idl_types.h +++ b/source4/librpc/idl/idl_types.h @@ -13,12 +13,6 @@ #define STR_LARGE_SIZE LIBNDR_FLAG_STR_LARGE_SIZE /* - a UCS2 string prefixed with [size] [offset] [length], all 32 bits - not null terminated -*/ -#define unistr_noterm [flag(STR_NOTERM|STR_SIZE4|STR_LEN4)] string - -/* a UCS2 string prefixed with [size], 32 bits */ #define lstring [flag(STR_SIZE4)] string diff --git a/source4/librpc/idl/lsa.idl b/source4/librpc/idl/lsa.idl index 824ebac689..465c757784 100644 --- a/source4/librpc/idl/lsa.idl +++ b/source4/librpc/idl/lsa.idl @@ -17,7 +17,7 @@ typedef [public,noejs] struct { [value(2*strlen_m(string))] uint16 length; [value(2*strlen_m(string))] uint16 size; - unistr_noterm *string; + [charset(UTF16),size_is(size),length_is(length)] uint8 *string; } lsa_String; typedef [public] struct { |