79 |
|
extern LUTAB ofiletab; /* output stream table */ |
80 |
|
|
81 |
|
#ifndef MAXPROCESS |
82 |
< |
#ifdef _WIN32 |
82 |
> |
#if defined(_WIN32) || defined(_WIN64) |
83 |
|
#define MAXPROCESS 1 |
84 |
|
#else |
85 |
|
#define MAXPROCESS 128 |
87 |
|
#endif |
88 |
|
|
89 |
|
#ifndef MAXMODLIST |
90 |
< |
#define MAXMODLIST 2048 /* maximum modifiers we'll track */ |
90 |
> |
#define MAXMODLIST 10000 /* maximum modifiers we'll track */ |
91 |
|
#endif |
92 |
|
|
93 |
|
extern const char *modname[MAXMODLIST]; /* ordered modifier name list */ |
104 |
|
|
105 |
|
extern void mod_output(MODCONT *mp); |
106 |
|
extern void end_record(void); |
107 |
– |
|
108 |
– |
extern void set_eparams(char *prms); |
107 |
|
|
108 |
|
extern MODCONT *addmodifier(char *modn, char *outf, |
109 |
|
char *prms, char *binv, int bincnt); |