PDF SDK Documentation
Comprehensive Guide for Developers: Features, Integration, and API Reference
Loading...
Searching...
No Matches
pdf2rtf.h
Go to the documentation of this file.
1
// Copyright (c) 2009-2025 Avanquest Software. All rights reserved.
2
3
#ifndef PDFSDK_CONVERT_PDF2RTF_H_INCLUDED_
4
#define PDFSDK_CONVERT_PDF2RTF_H_INCLUDED_
5
11
#include <pdfsdk/core.h>
12
13
#ifdef PDF_PDF2RTF_EXPORTS
14
#define PDF_PDF2RTF_API PDFSDK_EXPORT_
15
#else
16
#define PDF_PDF2RTF_API PDFSDK_IMPORT_
17
#endif
18
19
struct
PDFConvertToRtfParams
{
20
const
wchar_t
* outputFile;
21
bool
tableRecognize;
22
};
23
24
#ifdef __cplusplus
25
extern
"C"
{
26
#endif
27
28
PDF_PDF2RTF_API
PDErrCode
PDFSDK_CALLCONV PDFConvertToRtf(PDDoc source,
29
const
PDPageRange
* pageRange,
30
const
PDProgressMonitor
* progress,
31
void
* progressData,
32
const
PDFConvertToRtfParams
*);
33
34
#ifdef __cplusplus
35
}
36
#endif
37
38
#endif
// PDFSDK_CONVERT_PDF2RTF_H_INCLUDED_
PDErrCode
int32_t PDErrCode
Definition
errors.h:44
PDFConvertToRtfParams
Definition
pdf2rtf.h:19
PDPageRange
Definition
document.h:37
PDProgressMonitor
Definition
progress_monitor.h:15