1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-27 20:27:45 +00:00

Cleanup types in URaid and move declarations to separate include file (#428)

This commit is contained in:
Nick Briggs
2022-07-20 10:45:37 -07:00
committed by GitHub
parent 9a10f63fe6
commit 5fa05ac3d7
7 changed files with 50 additions and 50 deletions

23
inc/uraidextdefs.h Normal file
View File

@@ -0,0 +1,23 @@
#ifndef URAIDEXTDEFS_H
#define URAIDEXTDEFS_H 1
#include "stack.h" /* for FX */
#include "lispemul.h" /* for LispPTR */
#define URMAXFXNUM 2000
#define URMAXCOMM 512
#define URSCAN_ALINK 0
#define URSCAN_CLINK 1
extern FX *URaid_FXarray[URMAXFXNUM];
extern char URaid_arg1[URMAXCOMM / 2];
extern char URaid_arg2[URMAXCOMM / 2];
extern char URaid_comm;
extern char URaid_inputstring[URMAXCOMM];
extern const char *URaid_errmess;
extern int URaid_ArrMAXIndex;
extern int URaid_argnum;
extern int URaid_currentFX;
extern int URaid_scanlink;
extern LispPTR Uraid_mess;
#endif