mirror of
https://github.com/Interlisp/maiko.git
synced 2026-02-01 06:12:31 +00:00
... start by fixing the include files and the fallout in C source from removing includes not directly needed by headers that previously included them.
13 lines
398 B
C
13 lines
398 B
C
#ifndef DSPSUBRSDEFS_H
|
|
#define DSPSUBRSDEFS_H 1
|
|
#include "lispemul.h" /* for LispPTR */
|
|
void DSP_dspbout(LispPTR *args);
|
|
void DSP_showdisplay(LispPTR *args);
|
|
LispPTR DSP_VideoColor(LispPTR *args);
|
|
void DSP_Cursor(LispPTR *args, int argnum);
|
|
void DSP_SetMousePos(register LispPTR *args);
|
|
LispPTR DSP_ScreenWidth(LispPTR *args);
|
|
LispPTR DSP_ScreenHight(LispPTR *args);
|
|
void flip_cursor(void);
|
|
#endif
|