mirror of
https://github.com/simon987/sist2.git
synced 2025-04-18 01:36:42 +00:00
18 lines
321 B
C
18 lines
321 B
C
#ifndef SCAN_OOXML_H
|
|
#define SCAN_OOXML_H
|
|
|
|
#include <stdlib.h>
|
|
#include "../scan.h"
|
|
|
|
typedef struct {
|
|
int enable_tn;
|
|
long content_size;
|
|
log_callback_t log;
|
|
logf_callback_t logf;
|
|
store_callback_t store;
|
|
} scan_ooxml_ctx_t;
|
|
|
|
void parse_ooxml(scan_ooxml_ctx_t *ctx, vfile_t *f, document_t *doc);
|
|
|
|
#endif
|