mirror of
https://github.com/Interlisp/maiko.git
synced 2026-02-28 09:17:36 +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
463 B
C
13 lines
463 B
C
#ifndef XWINMANDEFS_H
|
|
#define XWINMANDEFS_H 1
|
|
#include <X11/X.h> /* for Window */
|
|
#include <X11/Xlib.h> /* for XButtonEvent */
|
|
#include "devif.h" /* for DspInterface */
|
|
int bound(int a, int b, int c);
|
|
void Set_BitGravity(XButtonEvent *event, DspInterface dsp, Window window, int grav);
|
|
void enable_Xkeyboard(DspInterface dsp);
|
|
void disable_Xkeyboard(DspInterface dsp);
|
|
void beep_Xkeyboard(DspInterface dsp);
|
|
void getXsignaldata(DspInterface dsp);
|
|
#endif
|