mirror of
https://github.com/simon987/sist2.git
synced 2025-04-04 07:52:59 +00:00
19 lines
321 B
C
19 lines
321 B
C
#ifndef SIST2_RAW_H
|
|
#define SIST2_RAW_H
|
|
|
|
#include "../scan.h"
|
|
|
|
typedef struct {
|
|
log_callback_t log;
|
|
logf_callback_t logf;
|
|
store_callback_t store;
|
|
|
|
int enable_tn;
|
|
int tn_size;
|
|
int tn_qscale;
|
|
} scan_raw_ctx_t;
|
|
|
|
void parse_raw(scan_raw_ctx_t *ctx, vfile_t *f, document_t *doc);
|
|
|
|
#endif //SIST2_RAW_H
|