From 79090c31b60c95dcabd4572031353c9e0f54fc67 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Mon, 15 Dec 2025 17:22:51 +0100 Subject: feat: new properties and improved vettable system. Signed-off-by: Amlal El Mahrouss --- src/kernel/KernelKit/ZXD.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/kernel/KernelKit') 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 -- cgit v1.2.3