mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2025-01-28 03:25:27 +01:00
02da650191
- added snes_gx 4.3.4
28 lines
401 B
C
28 lines
401 B
C
#ifndef PDF_TOOL_H_
|
|
#define PDF_TOOL_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#include "fitz.h"
|
|
#include "mupdf.h"
|
|
|
|
extern char *basename;
|
|
extern pdf_xref *xref;
|
|
extern int pagecount;
|
|
|
|
void die(fz_error error);
|
|
void setcleanup(void (*cleanup)(void));
|
|
|
|
void openxref(char *filename, char *password, int dieonbadpass);
|
|
void flushxref(void);
|
|
void closexref(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|