1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-03-01 01:29:28 +00:00
Files
Interlisp.maiko/inc/xcursordefs.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

12 lines
465 B
C

#ifndef XCURSORDEFS_H
#define XCURSORDEFS_H 1
#include <X11/X.h> /* for Cursor, Window */
#include <X11/Xlib.h> /* for Display */
#include <stdint.h> /* for uint8_t */
#include "devif.h" /* for DspInterface */
void Init_XCursor(void);
void Set_XCursor(int x, int y);
void init_Xcursor(Display *display, Window window);
void set_Xcursor(DspInterface dsp, const uint8_t *bitmap, int hotspot_x, int hotspot_y, Cursor *return_cursor, int from_lisp);
#endif