mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
1df3f24d95
Jeremy.
(This used to be commit 9c21756f9e
)
35 lines
813 B
C
35 lines
813 B
C
/* header auto-generated by pidl */
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifndef _HEADER_xattr
|
|
#define _HEADER_xattr
|
|
|
|
#define XATTR_NTACL_NAME ( "security.NTACL" )
|
|
struct tdb_xattr {
|
|
const char * name;/* [flag(LIBNDR_FLAG_STR_UTF8|LIBNDR_FLAG_STR_NULLTERM)] */
|
|
DATA_BLOB value;
|
|
}/* [public] */;
|
|
|
|
struct tdb_xattrs {
|
|
uint32_t num_xattrs;
|
|
struct tdb_xattr *xattrs;
|
|
}/* [public] */;
|
|
|
|
struct security_descriptor_timestamp {
|
|
struct security_descriptor *sd;/* [unique] */
|
|
NTTIME last_changed;
|
|
}/* [public] */;
|
|
|
|
union xattr_NTACL_Info {
|
|
struct security_descriptor *sd;/* [unique,case] */
|
|
struct security_descriptor_timestamp *sd_ts;/* [unique,case(2)] */
|
|
}/* [switch_type(uint16)] */;
|
|
|
|
struct xattr_NTACL {
|
|
uint16_t version;
|
|
union xattr_NTACL_Info info;/* [switch_is(version)] */
|
|
}/* [public] */;
|
|
|
|
#endif /* _HEADER_xattr */
|