1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/librpc/idl/file_id.idl
Günther Deschner c9f4fad75c 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
2011-01-25 12:27:00 +01:00

15 lines
388 B
Plaintext

[
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;
}