diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-26 04:07:14 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-26 04:16:24 +0200 |
| commit | ff94ce367f7f23e3a78f157f9420c480a4d7f9aa (patch) | |
| tree | fc87ecd1ccf3de317db4214fe6460e324a5e76e4 /dev/ZKA/CompressKit | |
| parent | b98a81f4f26b4da98f2ac760763af656f95f392b (diff) | |
[IMP] DLLInterface class and also reworked SCI's API.
[IMP] Handover now gives the kernel image, for the OS.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ZKA/CompressKit')
| -rw-r--r-- | dev/ZKA/CompressKit/RLE.hxx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/dev/ZKA/CompressKit/RLE.hxx b/dev/ZKA/CompressKit/RLE.hxx new file mode 100644 index 00000000..647cf00b --- /dev/null +++ b/dev/ZKA/CompressKit/RLE.hxx @@ -0,0 +1,18 @@ +/* ------------------------------------------- + + Copyright ZKA Technologies. + +------------------------------------------- */ + +#ifndef __KERNELKIT_RLE_HXX__ +#define __KERNELKIT_RLE_HXX__ + +#include <NewKit/Defines.hxx> + +namespace Kernel +{ + EXTERN_C Void rle_compress(VoidPtr data, Size sz, VoidPtr out, Size out_sz); + EXTERN_C Void rle_decompress(VoidPtr data, Size sz, VoidPtr out, Size out_sz); +} // namespace Kernel + +#endif // !ifndef __KERNELKIT_RLE_HXX__ |
