1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-28 07:21:54 +03:00

srvsvc.idl: don't use STR_LEN4 anymore

metze
This commit is contained in:
Stefan Metzmacher 2008-02-19 16:40:48 +01:00
parent 24ec069751
commit 8c7509bd68

View File

@ -1127,7 +1127,16 @@ import "security.idl", "svcctl.idl";
/* srvsvc_NetDisk */
/**************************/
typedef struct {
[flag(STR_LEN4)] string disk;
/*
* In theory this should be:
* [charset(UTF16),string] uint16 annotation[3]
* But midl treats this as:
* [charset(UTF16),string] uint16 annotation[]
* and pidl doesn't support this yet
*/
[value(0)] uint32 __disk_offset;
[value(strlen(disk)+1)] uint32 __disk_length;
[charset(UTF16)] uint16 disk[__disk_length];
} srvsvc_NetDiskInfo0;
typedef struct {