aboutsummaryrefslogtreecommitdiff
path: root/src/huffman/huff.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/huffman/huff.h')
-rw-r--r--src/huffman/huff.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/huffman/huff.h b/src/huffman/huff.h
index cf1ca4c..b2c6370 100644
--- a/src/huffman/huff.h
+++ b/src/huffman/huff.h
@@ -28,8 +28,8 @@ class TInputStream
public:
TInputStream(void * pvInBuffer, size_t cbInBuffer);
- unsigned int Get1Bit();
- unsigned int Get8Bits();
+ bool Get1Bit(unsigned int & BitValue);
+ bool Get8Bits(unsigned int & ByteValue);
bool Peek7Bits(unsigned int & Value);
void SkipBits(unsigned int BitCount);