mirror of
https://github.com/simon987/libscan.git
synced 2025-04-06 04:42:59 +00:00
fix typo
This commit is contained in:
parent
93e7181378
commit
6106b87cba
@ -138,7 +138,7 @@ void bmp_format(dyn_buffer_t *buf, text_dimensions_t dimensions, const unsigned
|
|||||||
*(int *) ((char *) buf->buf + 2) = buf->cur;
|
*(int *) ((char *) buf->buf + 2) = buf->cur;
|
||||||
}
|
}
|
||||||
|
|
||||||
void parse_font(scan_font_cxt_t *ctx, vfile_t *f, document_t *doc) {
|
void parse_font(scan_font_ctx_t *ctx, vfile_t *f, document_t *doc) {
|
||||||
if (ft_lib == NULL) {
|
if (ft_lib == NULL) {
|
||||||
FT_Init_FreeType(&ft_lib);
|
FT_Init_FreeType(&ft_lib);
|
||||||
}
|
}
|
||||||
|
@ -9,9 +9,9 @@ typedef struct {
|
|||||||
log_callback_t log;
|
log_callback_t log;
|
||||||
logf_callback_t logf;
|
logf_callback_t logf;
|
||||||
store_callback_t store;
|
store_callback_t store;
|
||||||
} scan_font_cxt_t;
|
} scan_font_ctx_t;
|
||||||
|
|
||||||
void parse_font(scan_font_cxt_t *ctx, vfile_t *f, document_t *doc);
|
void parse_font(scan_font_ctx_t *ctx, vfile_t *f, document_t *doc);
|
||||||
void cleanup_font();
|
void cleanup_font();
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -33,7 +33,7 @@ static int should_read_part(const char *part) {
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
int extract_text(scan_ooxml_cxt_t *ctx, xmlDoc *xml, xmlNode *node, text_buffer_t *buf) {
|
int extract_text(scan_ooxml_ctx_t *ctx, xmlDoc *xml, xmlNode *node, text_buffer_t *buf) {
|
||||||
//TODO: Check which nodes are likely to have a 't' child, and ignore nodes that aren't
|
//TODO: Check which nodes are likely to have a 't' child, and ignore nodes that aren't
|
||||||
xmlErrorPtr err = xmlGetLastError();
|
xmlErrorPtr err = xmlGetLastError();
|
||||||
if (err != NULL) {
|
if (err != NULL) {
|
||||||
@ -72,7 +72,7 @@ int xml_io_close(UNUSED(void *context)) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
__always_inline
|
__always_inline
|
||||||
static int read_part(scan_ooxml_cxt_t *ctx, struct archive *a, text_buffer_t *buf, document_t *doc) {
|
static int read_part(scan_ooxml_ctx_t *ctx, struct archive *a, text_buffer_t *buf, document_t *doc) {
|
||||||
|
|
||||||
xmlDoc *xml = xmlReadIO(xml_io_read, xml_io_close, a, "/", NULL, XML_PARSE_RECOVER | XML_PARSE_NOWARNING | XML_PARSE_NOERROR | XML_PARSE_NONET);
|
xmlDoc *xml = xmlReadIO(xml_io_read, xml_io_close, a, "/", NULL, XML_PARSE_RECOVER | XML_PARSE_NOWARNING | XML_PARSE_NOERROR | XML_PARSE_NONET);
|
||||||
|
|
||||||
@ -94,7 +94,7 @@ static int read_part(scan_ooxml_cxt_t *ctx, struct archive *a, text_buffer_t *bu
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void parse_doc(scan_ooxml_cxt_t *ctx, vfile_t *f, document_t *doc) {
|
void parse_doc(scan_ooxml_ctx_t *ctx, vfile_t *f, document_t *doc) {
|
||||||
|
|
||||||
size_t buf_len;
|
size_t buf_len;
|
||||||
void * buf = read_all(f, &buf_len);
|
void * buf = read_all(f, &buf_len);
|
||||||
|
@ -9,8 +9,8 @@ typedef struct {
|
|||||||
log_callback_t log;
|
log_callback_t log;
|
||||||
logf_callback_t logf;
|
logf_callback_t logf;
|
||||||
store_callback_t store;
|
store_callback_t store;
|
||||||
} scan_ooxml_cxt_t;
|
} scan_ooxml_ctx_t;
|
||||||
|
|
||||||
void parse_doc(scan_ooxml_cxt_t *ctx, vfile_t *f, document_t *doc);
|
void parse_doc(scan_ooxml_ctx_t *ctx, vfile_t *f, document_t *doc);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user