1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-02-28 09:17:36 +00:00
Files
Interlisp.maiko/inc/xwinmandefs.h
Nick Briggs c60b522012 Files should explicitly include the definitions they directly depend on (#355)
... start by fixing the include files and the fallout in C source from
removing includes not directly needed by headers that previously included
them.
2021-02-13 21:41:31 -08:00

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