mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-18 09:02:39 +00:00
This removes SYSVSIGNALS as we're always and only using POSIX signals now. Some platform differences have been papered over. We used to only ignore SIGPIPE when using BSD signals, but we now ignore it all the time. While the SIGFPE code will now compile, it hasn't been updated to work on modern OSes fully yet as it will need to enable the correct FP exceptions.
9 lines
240 B
C
9 lines
240 B
C
#ifndef KEYEVENTDEFS_H
|
|
#define KEYEVENTDEFS_H 1
|
|
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
|