10 lines
176 B
C
10 lines
176 B
C
#ifndef _LUNA_VFS_H
|
|
#define _LUNA_VFS_H
|
|
|
|
#define __VFS_FILE 0x0
|
|
#define __VFS_DIRECTORY 0x1
|
|
#define __VFS_DEVICE 0x2
|
|
|
|
#define __VFS_TO_IFMT(type) ((1 << type) * 010000)
|
|
|
|
#endif |