blob: fd99bab1dda37c31edd25ae18cd46d6d85a2250f (
plain) (
tree)
|
|
#ifndef DEF_FSNODE_IFACE_H
#define DEF_FSNODE_IFACE_H
enum {
NT_FILE = 1,
NT_DIRECTORY = 2,
NT_SYMLINK = 3,
NT_MOUNTPOINT = 4
};
#define FNIF_OBJTYPE 0x14
//S : static, GET : get, R : root, FN : fsnode
#define FNIF_SGETRFN 0
#define FNIF_GETNAME 0x10
#define FNIF_TYPE 0x11
#define FNIF_GETPARENT 0x12
#define FNIF_GETLENGTH 0x13
#define FNIF_GETUID 0x14
#define FNIF_GETGID 0x15
#define FNIF_GETPERM 0x16
#define FNIF_GETPATH 0x17
#endif
|