mirror of
https://github.com/Interlisp/maiko.git
synced 2026-02-04 07:33:07 +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.
10 lines
263 B
C
10 lines
263 B
C
#ifndef KEYEVENTDEFS_H
|
|
#define KEYEVENTDEFS_H 1
|
|
#include <sys/types.h>
|
|
void getsignaldata(int sig);
|
|
void kb_trans(u_short keycode, u_short upflg);
|
|
void taking_mouse_down(void);
|
|
void copy_cursor(int newx, int newy);
|
|
void cursor_hidden_bitmap(int x, int y);
|
|
#endif
|