aboutsummaryrefslogtreecommitdiff
path: root/inc/spec.h
diff options
context:
space:
mode:
authorMarvin Borner2022-01-01 18:20:11 +0100
committerMarvin Borner2022-01-01 18:20:11 +0100
commit6a1f4e4d394b3c5ff7a7d1c58a8775a645275e4a (patch)
treeaecf46ad188b047301578f5707a171d7c63b2a8e /inc/spec.h
parent0d665f1bf585930b1b6c45f53fe23f6fa07b398f (diff)
Implementing..
Diffstat (limited to 'inc/spec.h')
-rw-r--r--inc/spec.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/inc/spec.h b/inc/spec.h
index 7991866..b13534c 100644
--- a/inc/spec.h
+++ b/inc/spec.h
@@ -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