summaryrefslogtreecommitdiff
path: root/librpc/idl/file_id.idl
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2011-01-25 02:42:59 +0100
committerGünther Deschner <gd@samba.org>2011-01-25 12:27:00 +0100
commitc9f4fad75cf9749709cbebfe55c59f3c2d01858e (patch)
tree8327f107882dc201218912431baf53e97d5cc2a7 /librpc/idl/file_id.idl
parentf0b3c72bcc119f497a4379c549bc55fb1031ce90 (diff)
downloadsamba-c9f4fad75cf9749709cbebfe55c59f3c2d01858e.tar.gz
samba-c9f4fad75cf9749709cbebfe55c59f3c2d01858e.tar.bz2
samba-c9f4fad75cf9749709cbebfe55c59f3c2d01858e.zip
idl: add file_id idl.
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Tue Jan 25 12:27:00 CET 2011 on sn-devel-104
Diffstat (limited to 'librpc/idl/file_id.idl')
-rw-r--r--librpc/idl/file_id.idl14
1 files changed, 14 insertions, 0 deletions
diff --git a/librpc/idl/file_id.idl b/librpc/idl/file_id.idl
new file mode 100644
index 0000000000..cd1febedf4
--- /dev/null
+++ b/librpc/idl/file_id.idl
@@ -0,0 +1,14 @@
+[
+ pointer_default(unique)
+]
+interface file_id
+{
+ typedef [public] struct {
+ /* we don't use SMB_DEV_T and SMB_INO_T as we want a fixed size here,
+ and we may be using file system specific code to fill in something
+ other than a dev_t for the device */
+ udlong devid;
+ udlong inode;
+ udlong extid; /* Support systems that use an extended id (e.g. snapshots). */
+ } file_id;
+}