mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-20 09:45:13 +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.
11 lines
390 B
C
11 lines
390 B
C
#ifndef XINITDEFS_H
|
|
#define XINITDEFS_H 1
|
|
#include "devif.h" /* for DspInterface */
|
|
void init_Xevent(DspInterface dsp);
|
|
void lisp_Xexit(DspInterface dsp);
|
|
void Xevent_before_raid(DspInterface dsp);
|
|
void Xevent_after_raid(DspInterface dsp);
|
|
void Open_Display(DspInterface dsp);
|
|
DspInterface X_init(DspInterface dsp, char *lispbitmap, int width_hint, int height_hint, int depth_hint);
|
|
#endif
|