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_SRC_FXFA_SRC_FM2JS_XFA_FM2JS_H_ | 7 #ifndef XFA_SRC_FXFA_SRC_FM2JS_XFA_FM2JS_H_ |
8 #define XFA_SRC_FXFA_SRC_FM2JS_XFA_FM2JS_H_ | 8 #define XFA_SRC_FXFA_SRC_FM2JS_XFA_FM2JS_H_ |
9 | 9 |
10 #include "xfa/src/foxitlib.h" | |
11 #include "xfa/src/fxfa/src/common/xfa_docdata.h" | 10 #include "xfa/src/fxfa/src/common/xfa_docdata.h" |
12 #include "xfa/src/fxfa/src/common/xfa_doclayout.h" | 11 #include "xfa/src/fxfa/src/common/xfa_doclayout.h" |
13 #include "xfa/src/fxfa/src/common/xfa_document.h" | 12 #include "xfa/src/fxfa/src/common/xfa_document.h" |
14 #include "xfa/src/fxfa/src/common/xfa_fm2jsapi.h" | 13 #include "xfa/src/fxfa/src/common/xfa_fm2jsapi.h" |
15 #include "xfa/src/fxfa/src/common/xfa_localemgr.h" | 14 #include "xfa/src/fxfa/src/common/xfa_localemgr.h" |
16 #include "xfa/src/fxfa/src/common/xfa_object.h" | 15 #include "xfa/src/fxfa/src/common/xfa_object.h" |
17 #include "xfa/src/fxfa/src/common/xfa_parser.h" | 16 #include "xfa/src/fxfa/src/common/xfa_parser.h" |
18 #include "xfa/src/fxfa/src/common/xfa_script.h" | 17 #include "xfa/src/fxfa/src/common/xfa_script.h" |
19 #include "xfa/src/fxfa/src/common/xfa_utils.h" | 18 #include "xfa/src/fxfa/src/common/xfa_utils.h" |
20 #include "xfa/src/fxfa/src/fm2js/xfa_error.h" | 19 #include "xfa/src/fxfa/src/fm2js/xfa_error.h" |
21 #include "xfa/src/fxfa/src/fm2js/xfa_expression.h" | 20 #include "xfa/src/fxfa/src/fm2js/xfa_expression.h" |
22 #include "xfa/src/fxfa/src/fm2js/xfa_fm2jscontext.h" | 21 #include "xfa/src/fxfa/src/fm2js/xfa_fm2jscontext.h" |
23 #include "xfa/src/fxfa/src/fm2js/xfa_fmparse.h" | 22 #include "xfa/src/fxfa/src/fm2js/xfa_fmparse.h" |
24 #include "xfa/src/fxfa/src/fm2js/xfa_lexer.h" | 23 #include "xfa/src/fxfa/src/fm2js/xfa_lexer.h" |
25 #include "xfa/src/fxfa/src/fm2js/xfa_program.h" | 24 #include "xfa/src/fxfa/src/fm2js/xfa_program.h" |
26 #include "xfa/src/fxfa/src/fm2js/xfa_simpleexpression.h" | 25 #include "xfa/src/fxfa/src/fm2js/xfa_simpleexpression.h" |
27 | 26 |
28 #define RUNTIMEFUNCTIONRETURNVALUE \ | 27 #define RUNTIMEFUNCTIONRETURNVALUE \ |
29 (FX_WSTRC(L"foxit_xfa_formcalc_runtime_func_return_value")) | 28 (FX_WSTRC(L"foxit_xfa_formcalc_runtime_func_return_value")) |
30 #define EXCLAMATION_IN_IDENTIFIER \ | 29 #define EXCLAMATION_IN_IDENTIFIER \ |
31 (FX_WSTRC(L"foxit_xfa_formcalc__exclamation__")) | 30 (FX_WSTRC(L"foxit_xfa_formcalc__exclamation__")) |
32 | 31 |
33 #endif // XFA_SRC_FXFA_SRC_FM2JS_XFA_FM2JS_H_ | 32 #endif // XFA_SRC_FXFA_SRC_FM2JS_XFA_FM2JS_H_ |
OLD | NEW |