| 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 XFA_FDE_XML_FDE_XML_H_ | 7 #ifndef XFA_FDE_XML_FDE_XML_H_ |
| 8 #define XFA_FDE_XML_FDE_XML_H_ | 8 #define XFA_FDE_XML_FDE_XML_H_ |
| 9 | 9 |
| 10 #include "core/fxcrt/include/fx_system.h" | 10 #include "core/fxcrt/fx_system.h" |
| 11 | 11 |
| 12 enum class FDE_XmlSyntaxResult { | 12 enum class FDE_XmlSyntaxResult { |
| 13 None, | 13 None, |
| 14 InstructionOpen, | 14 InstructionOpen, |
| 15 InstructionClose, | 15 InstructionClose, |
| 16 ElementOpen, | 16 ElementOpen, |
| 17 ElementBreak, | 17 ElementBreak, |
| 18 ElementClose, | 18 ElementClose, |
| 19 TargetName, | 19 TargetName, |
| 20 TagName, | 20 TagName, |
| (...skipping 15 matching lines...) Expand all Loading... |
| 36 }; | 36 }; |
| 37 | 37 |
| 38 struct FDE_XMLNODE { | 38 struct FDE_XMLNODE { |
| 39 int32_t iNodeNum; | 39 int32_t iNodeNum; |
| 40 FDE_XMLNODETYPE eNodeType; | 40 FDE_XMLNODETYPE eNodeType; |
| 41 }; | 41 }; |
| 42 | 42 |
| 43 FX_BOOL FDE_IsXMLValidChar(FX_WCHAR ch); | 43 FX_BOOL FDE_IsXMLValidChar(FX_WCHAR ch); |
| 44 | 44 |
| 45 #endif // XFA_FDE_XML_FDE_XML_H_ | 45 #endif // XFA_FDE_XML_FDE_XML_H_ |
| OLD | NEW |