mirror of
https://github.com/Interlisp/maiko.git
synced 2026-02-01 06:12:31 +00:00
The predefined cursors (image and mask) are better represented as arrays of const uint8_t rather than char. Likewise for the window icon. Track this change in the functions that take the image and mask as arguments, casting only when we get to the X library functions that take char*.
11 lines
350 B
C
11 lines
350 B
C
#ifndef XCURSORDEFS_H
|
|
#define XCURSORDEFS_H 1
|
|
#include <stdint.h>
|
|
#include <X11/Xlib.h>
|
|
#include "devif.h"
|
|
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
|