diff options
Diffstat (limited to 'dev/zka/CompressKit')
| -rw-r--r-- | dev/zka/CompressKit/GZip.hxx | 5 | ||||
| -rw-r--r-- | dev/zka/CompressKit/RLE.hxx | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/dev/zka/CompressKit/GZip.hxx b/dev/zka/CompressKit/GZip.hxx index 22391fe0..5c754aba 100644 --- a/dev/zka/CompressKit/GZip.hxx +++ b/dev/zka/CompressKit/GZip.hxx @@ -4,7 +4,8 @@ ------------------------------------------- */ -#pragma once +#ifndef __KERNELKIT_GZIP_HXX__ +#define __KERNELKIT_GZIP_HXX__ #include <NewKit/Defines.hxx> @@ -13,3 +14,5 @@ namespace Kernel::GZip class IGZipObject; class IGZipProxy; } // namespace Kernel::GZip + +#endif // !__KERNELKIT_GZIP_HXX__ diff --git a/dev/zka/CompressKit/RLE.hxx b/dev/zka/CompressKit/RLE.hxx index e79eede6..2aea42ef 100644 --- a/dev/zka/CompressKit/RLE.hxx +++ b/dev/zka/CompressKit/RLE.hxx @@ -11,8 +11,8 @@ namespace Kernel { - Void rle_compress(VoidPtr data, Size sz, VoidPtr out, Size out_sz); - Void rle_decompress(VoidPtr data, Size sz, VoidPtr out, Size out_sz); + class IRleObject; + class IRleProxy; } // namespace Kernel #endif // !ifndef __KERNELKIT_RLE_HXX__ |
