diff options
Diffstat (limited to '3dc/win95/huffman.hpp')
| -rw-r--r-- | 3dc/win95/huffman.hpp | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/3dc/win95/huffman.hpp b/3dc/win95/huffman.hpp deleted file mode 100644 index 58faf2a..0000000 --- a/3dc/win95/huffman.hpp +++ /dev/null @@ -1,31 +0,0 @@ -#ifndef _huffman_hpp_included -#define _huffman_hpp_included 1 - -#ifdef __cplusplus - extern "C" - { -#endif - -#define MAX_DEPTH 11 -typedef struct -{ - char Identifier[8]; - int CompressedDataSize; - int UncompressedDataSize; - int CodelengthCount[MAX_DEPTH]; - unsigned char ByteAssignment[256]; -} HuffmanPackage; - -/* KJL 17:16:03 17/09/98 - Compression */ -extern HuffmanPackage *HuffmanCompression(unsigned char *sourcePtr, int length); - -/* KJL 16:53:53 19/09/98 - Decompression */ -extern char *HuffmanDecompress(HuffmanPackage *inpackage); - - -#define COMPRESSED_RIF_IDENTIFIER "REBCRIF1" -#ifdef __cplusplus - }; -#endif - -#endif
\ No newline at end of file |
