diff options
author | Andrew Tridgell <tridge@samba.org> | 2008-02-16 07:27:49 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2008-02-16 07:27:49 +1100 |
commit | 10e2530eed6e9ce0c532a2b62eee4c315e62b2ea (patch) | |
tree | 426d2d1290083bd414b1a445f6f10ceed17b4f5f /source4/librpc/idl/lsa.idl | |
parent | 2e4e06c6e69d881b0fc3c53df50db607fcce4a91 (diff) | |
parent | 57e910668d70a266ddf3a1296625fec17661a882 (diff) | |
download | samba-10e2530eed6e9ce0c532a2b62eee4c315e62b2ea.tar.gz samba-10e2530eed6e9ce0c532a2b62eee4c315e62b2ea.tar.bz2 samba-10e2530eed6e9ce0c532a2b62eee4c315e62b2ea.zip |
Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into v4-0-test
(This used to be commit 26475a231f73aaeef31e433b33dbfee6158e321d)
Diffstat (limited to 'source4/librpc/idl/lsa.idl')
-rw-r--r-- | source4/librpc/idl/lsa.idl | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/source4/librpc/idl/lsa.idl b/source4/librpc/idl/lsa.idl index 8d26ec0aad..bc5ccaa78a 100644 --- a/source4/librpc/idl/lsa.idl +++ b/source4/librpc/idl/lsa.idl @@ -33,11 +33,17 @@ import "security.idl"; } lsa_Strings; typedef [public] struct { - [value(strlen_m(string))] uint16 length; - [value(strlen_m(string))] uint16 size; - ascstr_noterm *string; + [value(strlen(string))] uint16 length; + [value(strlen(string))] uint16 size; + [charset(DOS),size_is(size),length_is(length)] uint8 *string; } lsa_AsciiString; + typedef [public] struct { + [value(strlen(string))] uint16 length; + [value(strlen(string)+1)] uint16 size; + [charset(DOS),size_is(size),length_is(length)] uint8 *string; + } lsa_AsciiStringLarge; + /******************/ /* Function: 0x00 */ NTSTATUS lsa_Close ( |