mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
11 lines
207 B
C++
11 lines
207 B
C++
#ifndef SMAKY_H
|
|
#define SMAKY_H
|
|
|
|
#define SMAKY_SECTOR_SIZE 256
|
|
#define SMAKY_RECORD_SIZE (1 + SMAKY_SECTOR_SIZE + 1)
|
|
|
|
extern std::unique_ptr<Decoder> createSmakyDecoder(const DecoderProto& config);
|
|
|
|
#endif
|
|
|