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 1075 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1086 CFX_DWordListArray; | 1086 CFX_DWordListArray; |
1087 typedef enum { | 1087 typedef enum { |
1088 Ready, | 1088 Ready, |
1089 ToBeContinued, | 1089 ToBeContinued, |
1090 Found, | 1090 Found, |
1091 NotFound, | 1091 NotFound, |
1092 Failed, | 1092 Failed, |
1093 Done | 1093 Done |
1094 } FX_ProgressiveStatus; | 1094 } FX_ProgressiveStatus; |
1095 #define ProgressiveStatus FX_ProgressiveStatus | 1095 #define ProgressiveStatus FX_ProgressiveStatus |
1096 #define FX_NAMESPACE_DECLARE(namespace, type) namespace ::type | |
1097 | 1096 |
1098 class CFX_Vector_3by1 { | 1097 class CFX_Vector_3by1 { |
1099 public: | 1098 public: |
1100 CFX_Vector_3by1() : a(0.0f), b(0.0f), c(0.0f) {} | 1099 CFX_Vector_3by1() : a(0.0f), b(0.0f), c(0.0f) {} |
1101 | 1100 |
1102 CFX_Vector_3by1(FX_FLOAT a1, FX_FLOAT b1, FX_FLOAT c1) | 1101 CFX_Vector_3by1(FX_FLOAT a1, FX_FLOAT b1, FX_FLOAT c1) |
1103 : a(a1), b(b1), c(c1) {} | 1102 : a(a1), b(b1), c(c1) {} |
1104 | 1103 |
1105 FX_FLOAT a; | 1104 FX_FLOAT a; |
1106 FX_FLOAT b; | 1105 FX_FLOAT b; |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1141 FX_FLOAT c; | 1140 FX_FLOAT c; |
1142 FX_FLOAT d; | 1141 FX_FLOAT d; |
1143 FX_FLOAT e; | 1142 FX_FLOAT e; |
1144 FX_FLOAT f; | 1143 FX_FLOAT f; |
1145 FX_FLOAT g; | 1144 FX_FLOAT g; |
1146 FX_FLOAT h; | 1145 FX_FLOAT h; |
1147 FX_FLOAT i; | 1146 FX_FLOAT i; |
1148 }; | 1147 }; |
1149 | 1148 |
1150 #endif // CORE_INCLUDE_FXCRT_FX_BASIC_H_ | 1149 #endif // CORE_INCLUDE_FXCRT_FX_BASIC_H_ |
OLD | NEW |