mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-25 22:14:37 +00:00
api: Add "KernelData" variable inside Inode structure
This commit is contained in:
parent
9a6008a07c
commit
7cf35ec984
@ -259,6 +259,7 @@ struct Inode
|
|||||||
uint32_t Flags;
|
uint32_t Flags;
|
||||||
off_t Offset;
|
off_t Offset;
|
||||||
|
|
||||||
|
uintptr_t KernelData;
|
||||||
void *PrivateData;
|
void *PrivateData;
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
@ -289,6 +290,7 @@ struct Inode
|
|||||||
Mode = 0;
|
Mode = 0;
|
||||||
Flags = 0;
|
Flags = 0;
|
||||||
Offset = 0;
|
Offset = 0;
|
||||||
|
KernelData = 0x0;
|
||||||
PrivateData = nullptr;
|
PrivateData = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user