Add inode to os2.Stat

This commit is contained in:
gingerBill
2024-07-24 13:37:56 +01:00
parent 0e91c8368c
commit c407e423d9
3 changed files with 7 additions and 1 deletions
+3
View File
@@ -8,9 +8,12 @@ Fstat_Callback :: proc(f: ^File, allocator: runtime.Allocator) -> (File_Info, Er
File_Info :: struct {
fullpath: string,
name: string,
inode: u64,
size: i64,
mode: int,
type: File_Type,
creation_time: time.Time,
modification_time: time.Time,
access_time: time.Time,