1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

messaging.idl: add structure to marshall dbwrap_tdb2 changes

metze
(This used to be commit 46a0d8e872)
This commit is contained in:
Stefan Metzmacher 2008-03-31 11:17:15 +02:00
parent 3ae463ca69
commit 1b2b703b37

View File

@ -23,4 +23,19 @@ interface messaging
uint32 num_messages;
messaging_rec messages[num_messages];
} messaging_array;
/*
* struct used for change notify messages
* in the dbwrap_tdb2 code
*/
typedef [public] struct {
[charset(DOS),value("TDB2")] uint8 magic_string[4];
[value(1)] uint32 magic_version;
[charset(UTF8),string] uint8 name[];
uint32 old_seqnum;
uint32 new_seqnum;
uint32 num_changes;
uint32 num_keys;
DATA_BLOB keys[num_keys];
} dbwrap_tdb2_changes;
}