2019-06-22 16:11:44 -05:00
|
|
|
#ifndef IPC_VFS_H
|
|
|
|
#define IPC_VFS_H
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
VFS_OPEN
|
|
|
|
} vfs_message_type;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
vfs_message_type type;
|
|
|
|
uint32_t id;
|
|
|
|
char mode[10];
|
|
|
|
uint32_t fd;
|
2019-06-27 17:00:23 -05:00
|
|
|
char path[4096];
|
2019-06-22 16:11:44 -05:00
|
|
|
} vfs_message;
|
|
|
|
|
|
|
|
#endif
|