OLD | NEW |
| (Empty) |
1 // Copyright 2014 PDFium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | |
6 | |
7 #ifndef XFA_SRC_FXFA_SRC_FM2JS_XFA_FM2JS_H_ | |
8 #define XFA_SRC_FXFA_SRC_FM2JS_XFA_FM2JS_H_ | |
9 | |
10 #include "xfa/src/fxfa/src/common/xfa_docdata.h" | |
11 #include "xfa/src/fxfa/src/common/xfa_doclayout.h" | |
12 #include "xfa/src/fxfa/src/common/xfa_document.h" | |
13 #include "xfa/src/fxfa/src/common/xfa_fm2jsapi.h" | |
14 #include "xfa/src/fxfa/src/common/xfa_localemgr.h" | |
15 #include "xfa/src/fxfa/src/common/xfa_object.h" | |
16 #include "xfa/src/fxfa/src/common/xfa_parser.h" | |
17 #include "xfa/src/fxfa/src/common/xfa_script.h" | |
18 #include "xfa/src/fxfa/src/common/xfa_utils.h" | |
19 #include "xfa/src/fxfa/src/fm2js/xfa_error.h" | |
20 #include "xfa/src/fxfa/src/fm2js/xfa_expression.h" | |
21 #include "xfa/src/fxfa/src/fm2js/xfa_fm2jscontext.h" | |
22 #include "xfa/src/fxfa/src/fm2js/xfa_fmparse.h" | |
23 #include "xfa/src/fxfa/src/fm2js/xfa_lexer.h" | |
24 #include "xfa/src/fxfa/src/fm2js/xfa_program.h" | |
25 #include "xfa/src/fxfa/src/fm2js/xfa_simpleexpression.h" | |
26 | |
27 #define RUNTIMEFUNCTIONRETURNVALUE \ | |
28 (FX_WSTRC(L"foxit_xfa_formcalc_runtime_func_return_value")) | |
29 #define EXCLAMATION_IN_IDENTIFIER \ | |
30 (FX_WSTRC(L"foxit_xfa_formcalc__exclamation__")) | |
31 | |
32 #endif // XFA_SRC_FXFA_SRC_FM2JS_XFA_FM2JS_H_ | |
OLD | NEW |