-
-
Notifications
You must be signed in to change notification settings - Fork 253
Expand file tree
/
Copy pathext_api.h
More file actions
28 lines (22 loc) · 1019 Bytes
/
ext_api.h
File metadata and controls
28 lines (22 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* C prototypes for the “PDFiumExt_*” helpers
———————————————————————————————————————————————
Only needed so Clang can “see” the symbols when we
dump the AST; the real implementations live in main.cpp
*/
#ifdef __cplusplus
extern "C" {
#endif
void PDFiumExt_Init(void);
void* PDFiumExt_OpenFileWriter(void);
void PDFiumExt_CloseFileWriter(void* writer);
int PDFiumExt_GetFileWriterSize(void* writer);
int PDFiumExt_GetFileWriterData(void* writer, void* buffer, int size);
void* PDFiumExt_OpenFormFillInfo(void);
void PDFiumExt_CloseFormFillInfo(void* info);
void* PDFiumExt_InitFormFillEnvironment(void* doc, void* info);
void PDFiumExt_ExitFormFillEnvironment(void* formHandle);
int PDFiumExt_SaveAsCopy(void* document, void* writer);
int EPDF_GetPageObjNum(void* document, int page_index);
#ifdef __cplusplus
}
#endif