Update external/fs.

This commit is contained in:
David Reid
2025-07-17 15:08:29 +10:00
parent d8236f9d22
commit 291442cd6c
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1359,13 +1359,13 @@ struct fs
fs_uint32 refCount; /* Incremented when a file is opened, decremented when a file is closed. */
};
typedef struct fs_file
struct fs_file
{
fs_stream stream; /* Files are streams. This must be the first member so it can be cast. */
fs* pFS;
fs_stream* pStreamForBackend; /* The stream for use by the backend. Different to `stream`. This is a duplicate of the stream used by `pFS` so the backend can do reading. */
size_t backendDataSize;
} fs_file;
};
typedef enum fs_mount_priority
{