You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
512 B
21 lines
512 B
9 years ago
|
#ifndef HEATSHRINK_H
|
||
|
#define HEATSHRINK_H
|
||
|
|
||
|
#define HEATSHRINK_AUTHOR "Scott Vokes <scott.vokes@atomicobject.com>"
|
||
|
#define HEATSHRINK_URL "https://github.com/atomicobject/heatshrink"
|
||
|
|
||
|
/* Version 0.3.1 */
|
||
|
#define HEATSHRINK_VERSION_MAJOR 0
|
||
|
#define HEATSHRINK_VERSION_MINOR 3
|
||
|
#define HEATSHRINK_VERSION_PATCH 1
|
||
|
|
||
|
#define HEATSHRINK_MIN_WINDOW_BITS 4
|
||
|
#define HEATSHRINK_MAX_WINDOW_BITS 15
|
||
|
|
||
|
#define HEATSHRINK_MIN_LOOKAHEAD_BITS 2
|
||
|
|
||
|
#define HEATSHRINK_LITERAL_MARKER 0x01
|
||
|
#define HEATSHRINK_BACKREF_MARKER 0x00
|
||
|
|
||
|
#endif
|