mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
12 lines
199 B
C++
12 lines
199 B
C++
#ifndef AGAT_H
|
|
#define AGAT_H
|
|
|
|
#define AGAT_SECTOR_SIZE 256
|
|
|
|
extern std::unique_ptr<Decoder> createAgatDecoder(const DecoderProto& config);
|
|
|
|
extern uint8_t agatChecksum(const Bytes& bytes);
|
|
|
|
#endif
|
|
|