| Index: core/include/fpdfapi/fpdf_parser.h
|
| diff --git a/core/include/fpdfapi/fpdf_parser.h b/core/include/fpdfapi/fpdf_parser.h
|
| index e1a0f5cf1af7cd90dc19b753a21bb5fb6b5db630..0ed8ed20d8b8f4f90abef9941d486e4696ae6f9a 100644
|
| --- a/core/include/fpdfapi/fpdf_parser.h
|
| +++ b/core/include/fpdfapi/fpdf_parser.h
|
| @@ -46,6 +46,14 @@ class CFX_PrivateData;
|
| #define FPDFPERM_ASSEMBLE 0x0400
|
| #define FPDFPERM_PRINT_HIGH 0x0800
|
| #define FPDF_PAGE_MAX_NUM 0xFFFFF
|
| +
|
| +// Indexed by 8-bit character code, contains either:
|
| +// 'W' - for whitespace: NUL, TAB, CR, LF, FF, 0x80, 0xff
|
| +// 'N' - for numeric: 0123456789+-.
|
| +// 'D' - for delimiter: %()/<>[]{}
|
| +// 'R' - otherwise.
|
| +extern const char PDF_CharType[256];
|
| +
|
| class IPDF_EnumPageHandler
|
| {
|
| public:
|
|
|