mirror of
https://github.com/simon987/libscan.git
synced 2025-04-06 04:42:59 +00:00
18 lines
304 B
C
18 lines
304 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 tn_size;
|
|
float tn_qscale;
|
|
} scan_raw_ctx_t;
|
|
|
|
void parse_raw(scan_raw_ctx_t *ctx, vfile_t *f, document_t *doc);
|
|
|
|
#endif //SIST2_RAW_H
|