OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 PDFium Authors. All rights reserved. | |
Tom Sepez
2015/10/14 16:57:45
This should remain in the fpdf_datavail.h file; wh
jun_fang
2015/10/15 10:22:28
I replied it for your first comment.
| |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | |
6 | |
7 #ifndef PUBLIC_FPDF_MACRO_H_ | |
8 #define PUBLIC_FPDF_MACRO_H_ | |
9 | |
10 #ifdef __cplusplus | |
11 extern "C" { | |
12 #endif | |
13 | |
14 #define PDF_LINEARIZATION_UNKNOWN -1 | |
15 #define PDF_NOT_LINEARIZED 0 | |
16 #define PDF_LINEARIZED 1 | |
17 #define PDF_FORM_NOTAVAIL 0 | |
18 #define PDF_FORM_AVAIL 1 | |
19 #define PDF_FORM_NOTEXIST 2 | |
20 | |
21 #ifdef __cplusplus | |
22 } | |
23 #endif | |
24 | |
25 #endif // PUBLIC_FPDF_MACRO_H_ | |
OLD | NEW |