mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
12 lines
233 B
C++
12 lines
233 B
C++
#ifndef FB100_H
|
|
#define FB100_H
|
|
|
|
#define FB100_RECORD_SIZE 0x516 /* bytes */
|
|
#define FB100_ID_SIZE 17
|
|
#define FB100_PAYLOAD_SIZE 0x500
|
|
|
|
extern std::unique_ptr<AbstractDecoder> createFb100Decoder(const DecoderProto& config);
|
|
|
|
#endif
|
|
|