summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/KernelKit/ZXD.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-15 17:22:51 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-15 17:24:59 +0100
commit79090c31b60c95dcabd4572031353c9e0f54fc67 (patch)
tree5d8c7ccedfb040ab28c4f855f438d73b593e8c74 /src/kernel/KernelKit/ZXD.h
parent0b11c0cdac02f67dba3c55b97269edba212906ed (diff)
feat: new properties and improved vettable system.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/kernel/KernelKit/ZXD.h')
-rw-r--r--src/kernel/KernelKit/ZXD.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/kernel/KernelKit/ZXD.h b/src/kernel/KernelKit/ZXD.h
index 705a50d4..1ead7b1f 100644
--- a/src/kernel/KernelKit/ZXD.h
+++ b/src/kernel/KernelKit/ZXD.h
@@ -45,11 +45,15 @@ struct PACKED ZxdExec final {
/// @details This header is used to identify ZXD stub files. It contains the size of the stub, the
/// offset of the stub, and the CRC32 checksum of the stub.
struct PACKED ZxdStub final {
+ Char fName[8];
UInt32 fStubSize;
UInt32 fStubOffset;
UInt32 fStubCRC32;
};
+inline constexpr auto kDriverName = ".drvr";
+inline constexpr auto kProsanName = ".pros";
+
using ZxdExecPtr = ZxdExec*;
using ZxdStubPtr = ZxdStub*;
} // namespace Kernel