diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-07-27 14:38:43 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-07-27 14:38:43 -0700 |
commit | a25b4bca69ab26d174edb8cefbdcfc1a0353915a (patch) | |
tree | 3de2d8bc8f09023c6a0747ed0fd89323c6158e35 /core/include | |
parent | fa69033db8803b191fa43f3c5bec65998d2dc2f9 (diff) | |
download | pdfium-a25b4bca69ab26d174edb8cefbdcfc1a0353915a.tar.xz |
Fix FX_BOOL compilation errors under windows
- Bool functions should not return -1 for error.
- Bool variables should not be assigned 2
- Bool / int32_t prototypes should match.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1254973004 .
Diffstat (limited to 'core/include')
-rw-r--r-- | core/include/fpdfapi/fpdf_parser.h | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/core/include/fpdfapi/fpdf_parser.h b/core/include/fpdfapi/fpdf_parser.h index a856433a08..951085b33a 100644 --- a/core/include/fpdfapi/fpdf_parser.h +++ b/core/include/fpdfapi/fpdf_parser.h @@ -344,16 +344,11 @@ protected: #define PDFPARSE_TYPEONLY 1 #define PDFPARSE_NOSTREAM 2 struct PARSE_CONTEXT { - - FX_BOOL m_Flags; - - FX_FILESIZE m_DictStart; - - FX_FILESIZE m_DictEnd; - - FX_FILESIZE m_DataStart; - - FX_FILESIZE m_DataEnd; + uint32_t m_Flags; + FX_FILESIZE m_DictStart; + FX_FILESIZE m_DictEnd; + FX_FILESIZE m_DataStart; + FX_FILESIZE m_DataEnd; }; #define PDFPARSE_ERROR_SUCCESS 0 |