| 44 | } |
| 45 | |
| 46 | static int decode_header_gcr(uint16_t word) |
| 47 | { |
| 48 | switch (word) |
| 49 | { |
| 50 | #define GCR_ENTRY(gcr, data) \ |
| 51 | case gcr: \ |
| 52 | return data; |
| 53 | #include "header_gcr.h" |
| 54 | #undef GCR_ENTRY |
| 55 | } |
| 56 | return -1; |
| 57 | } |
| 58 | |
| 59 | class BrotherDecoder : public Decoder |
| 60 | { |