Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(602)

Side by Side Diff: public/fpdf_macro.h

Issue 1353093003: Support linearized loading (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698