diff options
author | Marvin Borner | 2022-01-01 18:20:11 +0100 |
---|---|---|
committer | Marvin Borner | 2022-01-01 18:20:11 +0100 |
commit | 6a1f4e4d394b3c5ff7a7d1c58a8775a645275e4a (patch) | |
tree | aecf46ad188b047301578f5707a171d7c63b2a8e /inc/spec.h | |
parent | 0d665f1bf585930b1b6c45f53fe23f6fa07b398f (diff) |
Implementing..
Diffstat (limited to 'inc/spec.h')
-rw-r--r-- | inc/spec.h | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -17,7 +17,7 @@ #define MARFS_ENTRY_SIZE 1024 #define MARFS_DIR_ENTRY 1 -#define MARFS_FILE_ENTRY 2; +#define MARFS_FILE_ENTRY 2 #define MARFS_DIR_ENTRY_COUNT (MARFS_ENTRY_SIZE / sizeof(struct marfs_dir_entry_data)) @@ -35,24 +35,28 @@ struct marfs_header { struct marfs_entry_header { u32 type; + u32 id; u32 prev, next; // MARFS_END if end } PACKED; struct marfs_dir_entry_data { - char name[MARFS_NAME_LENGTH]; + char name[MARFS_NAME_LENGTH + 1]; + u32 length; struct marfs_pointer pointer; } PACKED; struct marfs_dir_entry { struct marfs_entry_header header; + u32 count; struct marfs_dir_entry_data entries[MARFS_DIR_ENTRY_COUNT]; - u8 padding[MARFS_ENTRY_SIZE - sizeof(struct marfs_entry_header) - + u8 padding[MARFS_ENTRY_SIZE - sizeof(struct marfs_entry_header) - sizeof(u32) - (MARFS_DIR_ENTRY_COUNT * sizeof(struct marfs_dir_entry_data))]; } PACKED; struct marfs_file_entry { struct marfs_entry_header header; - u8 data[MARFS_ENTRY_SIZE - sizeof(struct marfs_entry_header)]; + u32 size; + u8 data[MARFS_ENTRY_SIZE - sizeof(struct marfs_entry_header) - sizeof(u32)]; } PACKED; #endif |