| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #ifndef CORE_INCLUDE_FXCRT_FX_BASIC_H_ | 7 #ifndef CORE_INCLUDE_FXCRT_FX_BASIC_H_ |
| 8 #define CORE_INCLUDE_FXCRT_FX_BASIC_H_ | 8 #define CORE_INCLUDE_FXCRT_FX_BASIC_H_ |
| 9 | 9 |
| 10 #include "fx_memory.h" | 10 #include "fx_memory.h" |
| (...skipping 1180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1191 CFX_DWordListArray; | 1191 CFX_DWordListArray; |
| 1192 typedef enum { | 1192 typedef enum { |
| 1193 Ready, | 1193 Ready, |
| 1194 ToBeContinued, | 1194 ToBeContinued, |
| 1195 Found, | 1195 Found, |
| 1196 NotFound, | 1196 NotFound, |
| 1197 Failed, | 1197 Failed, |
| 1198 Done | 1198 Done |
| 1199 } FX_ProgressiveStatus; | 1199 } FX_ProgressiveStatus; |
| 1200 #define ProgressiveStatus FX_ProgressiveStatus | 1200 #define ProgressiveStatus FX_ProgressiveStatus |
| 1201 #define FX_NAMESPACE_DECLARE(namespace, type) namespace ::type | |
| 1202 #ifdef PDF_ENABLE_XFA | 1201 #ifdef PDF_ENABLE_XFA |
| 1203 class IFX_Unknown { | 1202 class IFX_Unknown { |
| 1204 public: | 1203 public: |
| 1205 virtual ~IFX_Unknown() {} | 1204 virtual ~IFX_Unknown() {} |
| 1206 virtual FX_DWORD Release() = 0; | 1205 virtual FX_DWORD Release() = 0; |
| 1207 virtual FX_DWORD AddRef() = 0; | 1206 virtual FX_DWORD AddRef() = 0; |
| 1208 }; | 1207 }; |
| 1209 #define FX_IsOdd(a) ((a)&1) | 1208 #define FX_IsOdd(a) ((a)&1) |
| 1210 #endif // PDF_ENABLE_XFA | 1209 #endif // PDF_ENABLE_XFA |
| 1211 | 1210 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1255 FX_FLOAT c; | 1254 FX_FLOAT c; |
| 1256 FX_FLOAT d; | 1255 FX_FLOAT d; |
| 1257 FX_FLOAT e; | 1256 FX_FLOAT e; |
| 1258 FX_FLOAT f; | 1257 FX_FLOAT f; |
| 1259 FX_FLOAT g; | 1258 FX_FLOAT g; |
| 1260 FX_FLOAT h; | 1259 FX_FLOAT h; |
| 1261 FX_FLOAT i; | 1260 FX_FLOAT i; |
| 1262 }; | 1261 }; |
| 1263 | 1262 |
| 1264 #endif // CORE_INCLUDE_FXCRT_FX_BASIC_H_ | 1263 #endif // CORE_INCLUDE_FXCRT_FX_BASIC_H_ |
| OLD | NEW |