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

r20391: add idl for the content of the partialAttributeSet attribute

metze
This commit is contained in:
Stefan Metzmacher 2006-12-28 19:43:43 +00:00 committed by Gerald (Jerry) Carter
parent 4aa31c8862
commit f7f9f174d7

View File

@ -120,6 +120,30 @@ interface drsblobs {
[in] repsFromToBlob blob
);
/*
* partialAttributeSet
* w2k uses version 1
* w2k3 uses version 1
*/
typedef struct {
uint32 count;
drsuapi_DsAttributeId array[count];
} partialAttributeSetCtr1;
typedef [nodiscriminant] union {
[case(1)] partialAttributeSetCtr1 ctr1;
} partialAttributeSetCtr;
typedef [public] struct {
uint32 version;
uint32 reserved;
[switch_is(version)] partialAttributeSetCtr ctr;
} partialAttributeSetBlob;
void decode_partialAttributeSet(
[in] partialAttributeSetBlob blob
);
typedef struct {
hyper h4;
replUpToDateVectorCtr1 uptodateness_vector;