2022-10-21 16:31:09 +00:00
|
|
|
#ifndef _LUNA_VFS_H
|
|
|
|
#define _LUNA_VFS_H
|
|
|
|
|
|
|
|
#define __VFS_FILE 0x0
|
|
|
|
#define __VFS_DIRECTORY 0x1
|
|
|
|
#define __VFS_DEVICE 0x2
|
|
|
|
|
2022-10-28 15:13:20 +00:00
|
|
|
#define __VFS_TO_IFMT(type) ((1 << type) * 010000)
|
|
|
|
|
2022-10-21 16:31:09 +00:00
|
|
|
#endif
|