diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-12-01 21:18:01 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-12-01 21:18:01 +0100 |
| commit | fe84fb3dc11db9802a098a1321c5ed58d5d7ce9b (patch) | |
| tree | fd6e72b9ad4f516a417eb6c9ac49375781caea38 /dev/ZKAKit/CompressKit | |
| parent | 50c7c5676d110681528cc933c4b99844b11f1dd1 (diff) | |
ADD: Extended Firmware support for EFI and CoreBoot.
ADD: Sketching NetBoot support too.
Diffstat (limited to 'dev/ZKAKit/CompressKit')
| -rw-r--r-- | dev/ZKAKit/CompressKit/GZip.h | 6 | ||||
| -rw-r--r-- | dev/ZKAKit/CompressKit/RLE.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/dev/ZKAKit/CompressKit/GZip.h b/dev/ZKAKit/CompressKit/GZip.h index 86a2de89..f03b1167 100644 --- a/dev/ZKAKit/CompressKit/GZip.h +++ b/dev/ZKAKit/CompressKit/GZip.h @@ -4,8 +4,8 @@ ------------------------------------------- */ -#ifndef __KERNELKIT_GZIP_H__ -#define __KERNELKIT_GZIP_H__ +#ifndef COMPRESSKIT_GZIP_H +#define COMPRESSKIT_GZIP_H #include <NewKit/Defines.h> @@ -15,4 +15,4 @@ namespace Kernel::GZip class IGZipProxy; } // namespace Kernel::GZip -#endif // !__KERNELKIT_GZIP_H__ +#endif // !COMPRESSKIT_GZIP_H diff --git a/dev/ZKAKit/CompressKit/RLE.h b/dev/ZKAKit/CompressKit/RLE.h index f676cb7a..32f9dfd2 100644 --- a/dev/ZKAKit/CompressKit/RLE.h +++ b/dev/ZKAKit/CompressKit/RLE.h @@ -4,8 +4,8 @@ ------------------------------------------- */ -#ifndef __KERNELKIT_RLE_H__ -#define __KERNELKIT_RLE_H__ +#ifndef COMPRESSKIT_RLE_H +#define COMPRESSKIT_RLE_H #include <NewKit/Defines.h> @@ -15,4 +15,4 @@ namespace Kernel class IRleProxy; } // namespace Kernel -#endif // !ifndef __KERNELKIT_RLE_H__ +#endif // !ifndef COMPRESSKIT_RLE_H |
