You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
201 B
13 lines
201 B
8 years ago
|
#pragma once
|
||
|
|
||
|
struct mufs_dentry {
|
||
|
uint8_t type;
|
||
|
uint32_t file_size;
|
||
|
uint32_t root;
|
||
|
uint8_t depth;
|
||
|
uint16_t path_len;
|
||
|
} __attribute__((packed));
|
||
|
|
||
|
#define MUFS_FILE BIT(0)
|
||
|
#define MUFS_DIR BIT(1)
|