-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheaders.h
More file actions
136 lines (122 loc) · 3.76 KB
/
headers.h
File metadata and controls
136 lines (122 loc) · 3.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
//***************************************************************************
// NARS2000 -- All Headers
//***************************************************************************
/***************************************************************************
NARS2000 -- An Experimental APL Interpreter
Copyright (C) 2006-2016 Sudley Place Software
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
***************************************************************************/
#ifdef _WIN64
#pragma pack(push,8)
#else
#pragma pack(push,4)
#endif
// Disable stack checking
#pragma check_stack(off)
#define STRSAFE_NO_DEPRECATE
#include <strsafe.h>
#include <wininet.h>
#include <float.h>
#include <setjmp.h>
#include <stdio.h>
#include <stdint.h>
#include <mpir.h>
#include <mpfr.h>
#include "classnames.h"
#include "perfmon.h"
#include "defines.h"
#include "enums.h"
#include "types.h"
#include "macros.h"
#include "uniscribe.h"
#include "aplerrors.h"
#include "resdebug.h"
#include "resource.h"
#include "datatype.h"
#include "synobj.h"
#include "tokens.h"
#include "primfns.h"
#include "execmfn.h"
#include "sysvars.h"
#include "symtab.h"
#include "pl_parse.h"
#include "Unicode.h"
#include "colornames.h"
#include "syntaxcolors.h"
#include "primspec.h"
#include "unitranshdr.h"
#include "pn_parse.h"
#include "externs.h"
#include "fh_parse.h"
#include "dictionary.h"
#include "savefcn.h"
#include "tokenize.h"
#include "eventtypes.h"
#include "pertab.h"
#include "threads.h"
#include "cs_parse.h"
#include "display.h"
#include "grade.h"
#include "sis.h"
#include "editctrl.h"
#include "qf.h"
#include "fmtspec.h"
#ifndef REAL_MPIFNS
#include "mpifns.h"
#endif
#include "malloc.h"
#include "qf_dr.h"
#include "hungarian.h"
#include "sc_save.h"
#include "cr_proc.h"
#include "afofns.h"
#include "qf_nfns.h"
#pragma pack(pop)
#undef mpfr_init_set // The mpfr_init_set* functions are implemented
#undef mpfr_init_set_ui // as macros which causes a problem when used
#undef mpfr_init_set_si // as mpfr_init_set_q ((LPAPLVFP) lpMemRes)++, ...
#undef mpfr_init_set_d // so we must implement them ourselves as fns.
#undef mpfr_init_set_z
#undef mpfr_init_set_q
#define mpfr_init0(a) mpfr_init_set_ui ((a), 0, MPFR_RNDN)
#ifndef __ATTR_SAL
/* used for msvc code analysis */
/* http://msdn2.microsoft.com/en-us/library/ms235402.aspx */
#define _In_
#define _In_z_
#define _In_opt_z_
#define _In_opt_
#define _Printf_format_string_
#define _Ret_opt_z_
#define _Ret_z_
#define _Out_opt_
#define _Out_
#define _Check_return_
#define _Inout_
#define _Inout_opt_
#define _In_bytecount_(x)
#define _Out_opt_bytecapcount_(x)
#define _Out_bytecapcount_(x)
#define _Ret_
#define _Post_z_
#define _Out_cap_(x)
#define _Out_z_cap_(x)
#define _Out_ptrdiff_cap_(x)
#define _Out_opt_ptrdiff_cap_(x)
#endif
// Include prototypes unless prototyping
#ifndef PROTO
#include "compro.h"
#endif
//***************************************************************************
// End of File: headers.h
//***************************************************************************