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

epmapper.idl: don't use ascstr2 anymore

metze
This commit is contained in:
Stefan Metzmacher 2008-02-14 16:08:17 +01:00
parent b5c0a6c114
commit 96f1ad6d27

View File

@ -223,7 +223,16 @@ interface epmapper
typedef struct {
GUID object;
epm_twr_t *tower;
ascstr2 annotation;
/*
* In theory this should be:
* [charset(DOS),string] uint8 annotation[64]
* But midl treats this as:
* [charset(DOS),string] uint8 annotation[]
* and pidl doesn't support this yet
*/
[value(0)] uint32 __annotation_offset;
[value(strlen(annotation)+1)] uint32 __annotation_length;
[charset(DOS)] uint8 annotation[__annotation_length];
} epm_entry_t;
typedef struct {