1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/librpc/idl/fscc.idl
Matthieu Patou 4cc86bb505 idl: add fscc needed by frsrpc
Change-Id: Ib44a57b38a194e727242267a4821c88a15219eab
Signed-off-by: Matthieu Patou <mat@matws.net>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
2014-10-02 12:02:01 +02:00

48 lines
1.2 KiB
Plaintext

#include "idl_types.h"
import "misc.idl";
/* fscc structures */
[
pointer_default(unique),
helpstring("fscc structures")
]
interface fscc
{
typedef [public] struct {
GUID id;
GUID birthVolumeId;
GUID initialObjectId;
GUID domainId;
} fscc_FileObjectIdBuffer_2;
typedef [bitmap32bit,flag(NDR_PAHEX)] bitmap{
FSCC_FILE_ATTRIBUTE_READONLY = 0x00000001,
FSCC_FILE_ATTRIBUTE_HIDDEN = 0x00000002,
FSCC_FILE_ATTRIBUTE_SYSTEM = 0x00000004,
FSCC_FILE_ATTRIBUTE_NORMAL = 0x00000008,
FSCC_FILE_ATTRIBUTE_DIRECTORY = 0x00000010,
FSCC_FILE_ATTRIBUTE_ARCHIVE = 0x00000020,
FSCC_FILE_ATTRIBUTE_TEMPORARY = 0x00000100,
FSCC_FILE_ATTRIBUTE_SPARSE_FILE = 0x00000200,
FSCC_FILE_ATTRIBUTE_REPARSE_POINT = 0x00000400,
FSCC_FILE_ATTRIBUTE_COMPRESSED = 0x00000800,
FSCC_FILE_ATTRIBUTE_OFFLINE = 0x00001000,
FSCC_FILE_ATTRIBUTE_NOT_CONTENT_INDEXED = 0x00002000,
FSCC_FILE_ATTRIBUTE_ENCRYPTED = 0x00004000
} fscc_FileAttributes;
typedef [public] struct {
hyper creationTime;
hyper lastAccessTime;
hyper lastWriteTime;
hyper changeTime;
hyper allocSize;
hyper endOfFile;
fscc_FileAttributes fileAttribute;
uint32 reserved;
} fscc_FileNetworkOpenInformation;
}