Merge branch 'v3-2-test' of ssh://git.samba.org/data/git/samba into v3-2-test
[kai/samba.git] / source3 / librpc / idl / xattr.idl
1 #include "idl_types.h"
2
3 /*
4    IDL structures for xattrs
5 */
6
7 [
8   pointer_default(unique)
9 ]
10 interface xattr
11 {
12         /* xattrs for file systems that don't have any */
13
14         typedef [public] struct {
15                 utf8string name;
16                 DATA_BLOB value;
17         } tdb_xattr;
18
19         typedef [public] struct {
20                 uint32 num_xattrs;
21                 tdb_xattr xattrs[num_xattrs];
22         } tdb_xattrs;
23 }