diff options
| author | Steven Fuller <relnev@icculus.org> | 2001-07-01 00:55:22 +0000 |
|---|---|---|
| committer | Patryk Obara <dreamer.tan@gmail.com> | 2019-08-20 02:09:04 +0200 |
| commit | 2186d5f3f95cd74a070a490d899291648d58667a (patch) | |
| tree | 55241a1afa3e1a22e0b6593a8dead0b703800f44 /3dc/win95/huffman.hpp | |
| parent | 218ca90543758a20ac326e444ca0643174ca7384 (diff) | |
Initial revision
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 |
