diff options
Diffstat (limited to 'dev/CompressKit')
| -rw-r--r-- | dev/CompressKit/API.h | 18 | ||||
| -rw-r--r-- | dev/CompressKit/Compress.S | 11 | ||||
| -rw-r--r-- | dev/CompressKit/Decompress.S | 11 |
3 files changed, 40 insertions, 0 deletions
diff --git a/dev/CompressKit/API.h b/dev/CompressKit/API.h new file mode 100644 index 00000000..aaa89d4e --- /dev/null +++ b/dev/CompressKit/API.h @@ -0,0 +1,18 @@ +/* ------------------------------------------- + + Copyright (C) 2024, ELMH GROUP, all rights reserved. + +------------------------------------------- */ + +#ifndef COMPRESSKIT_RLE_H +#define COMPRESSKIT_RLE_H + +#include <NewKit/Defines.h> +// #include <CompressKit/Exports.h> + +namespace Kernel +{ + class ICompressProxy; +} // namespace Kernel + +#endif // !ifndef COMPRESSKIT_RLE_H diff --git a/dev/CompressKit/Compress.S b/dev/CompressKit/Compress.S new file mode 100644 index 00000000..1b605504 --- /dev/null +++ b/dev/CompressKit/Compress.S @@ -0,0 +1,11 @@ +/* ------------------------------------------- + + Copyright (C) 2024 ELMH GROUP, all rights reserved. + +------------------------------------------- */ + +.section .copyright + +.asciiz "ELMH GROUP, 2024" + +.text diff --git a/dev/CompressKit/Decompress.S b/dev/CompressKit/Decompress.S new file mode 100644 index 00000000..1b605504 --- /dev/null +++ b/dev/CompressKit/Decompress.S @@ -0,0 +1,11 @@ +/* ------------------------------------------- + + Copyright (C) 2024 ELMH GROUP, all rights reserved. + +------------------------------------------- */ + +.section .copyright + +.asciiz "ELMH GROUP, 2024" + +.text |
