api: Add "KernelData" variable inside Inode structure

This commit is contained in:
EnderIce2 2024-10-13 02:30:13 +03:00
parent 9a6008a07c
commit 7cf35ec984
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -259,6 +259,7 @@ struct Inode
uint32_t Flags;
off_t Offset;
uintptr_t KernelData;
void *PrivateData;
#ifdef __cplusplus
@ -289,6 +290,7 @@ struct Inode
Mode = 0;
Flags = 0;
Offset = 0;
KernelData = 0x0;
PrivateData = nullptr;
}