diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-02-15 14:56:07 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-02-15 15:03:28 +0100 |
commit | 9d9d54430aed677ae33e51fda5da7b4306c734f1 (patch) | |
tree | 95e24f65ea8d9a6b3b517b8033bb4bccab636308 | |
parent | de3d54e0559ee5ae9aa6810a3eaf4f237dbc5ae5 (diff) | |
download | samba-9d9d54430aed677ae33e51fda5da7b4306c734f1.tar.gz samba-9d9d54430aed677ae33e51fda5da7b4306c734f1.tar.bz2 samba-9d9d54430aed677ae33e51fda5da7b4306c734f1.zip |
lsa.idl: add lsa_AsciiStringLarge
metze
(This used to be commit 646c597b79cb01474ed8139e4e790206bd84632c)
-rw-r--r-- | source4/librpc/idl/lsa.idl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source4/librpc/idl/lsa.idl b/source4/librpc/idl/lsa.idl index c2b7b5b58a..bc5ccaa78a 100644 --- a/source4/librpc/idl/lsa.idl +++ b/source4/librpc/idl/lsa.idl @@ -38,6 +38,12 @@ import "security.idl"; [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 ( |