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