mirror of
https://github.com/sist2app/sist2.git
synced 2026-01-17 00:26:28 +00:00
20 lines
343 B
C
20 lines
343 B
C
#ifndef SCAN_SCAN_MOBI_H
|
|
#define SCAN_SCAN_MOBI_H
|
|
|
|
#include "../scan.h"
|
|
|
|
typedef struct {
|
|
long content_size;
|
|
log_callback_t log;
|
|
logf_callback_t logf;
|
|
store_callback_t store;
|
|
|
|
int tn_qscale;
|
|
int tn_size;
|
|
int enable_tn;
|
|
} scan_mobi_ctx_t;
|
|
|
|
void parse_mobi(scan_mobi_ctx_t *ctx, vfile_t *f, document_t *doc);
|
|
|
|
#endif
|