diff options
author | Jane Liu <janeliulwq@google.com> | 2017-07-18 10:15:16 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-07-19 13:55:30 +0000 |
commit | 18ae06d9ae493276b3ddcd37eb19de7aeba1a0e8 (patch) | |
tree | cfe59580602328796f2931506a591f2cf655c479 /public/fpdf_annot.h | |
parent | 0add284c1a2b3bee022bef34c7efddcb304f2e21 (diff) | |
download | pdfium-18ae06d9ae493276b3ddcd37eb19de7aeba1a0e8.tar.xz |
Basic APIs and tests for extracting attachments
1. Added API for extracting attachment properties and data.
* Expanded the embedder test to cover all the new APIs.
Bug=pdfium:174
Change-Id: I09bffd412410e9aea45faca442d2b72eefafef4e
Reviewed-on: https://pdfium-review.googlesource.com/7790
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'public/fpdf_annot.h')
-rw-r--r-- | public/fpdf_annot.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/public/fpdf_annot.h b/public/fpdf_annot.h index e6c33a59eb..5076470627 100644 --- a/public/fpdf_annot.h +++ b/public/fpdf_annot.h @@ -55,17 +55,6 @@ extern "C" { #define FPDF_ANNOT_FLAG_LOCKED (1 << 7) #define FPDF_ANNOT_FLAG_TOGGLENOVIEW (1 << 8) -#define FPDF_OBJECT_UNKNOWN 0 -#define FPDF_OBJECT_BOOLEAN 1 -#define FPDF_OBJECT_NUMBER 2 -#define FPDF_OBJECT_STRING 3 -#define FPDF_OBJECT_NAME 4 -#define FPDF_OBJECT_ARRAY 5 -#define FPDF_OBJECT_DICTIONARY 6 -#define FPDF_OBJECT_STREAM 7 -#define FPDF_OBJECT_NULLOBJ 8 -#define FPDF_OBJECT_REFERENCE 9 - typedef enum FPDFANNOT_COLORTYPE { FPDFANNOT_COLORTYPE_Color = 0, FPDFANNOT_COLORTYPE_InteriorColor |