2025-09-28 02:51:15 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
#ifndef __MILSKO_X11_H__
|
|
|
|
|
#define __MILSKO_X11_H__
|
|
|
|
|
|
|
|
|
|
#include <X11/X.h>
|
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
|
|
2025-09-28 06:52:49 +00:00
|
|
|
typedef struct _MilskoLowLevel {
|
2025-09-28 04:07:41 +00:00
|
|
|
Display* display;
|
|
|
|
|
Window window;
|
|
|
|
|
GC gc;
|
|
|
|
|
Colormap colormap;
|
|
|
|
|
int x;
|
|
|
|
|
int y;
|
2025-09-28 04:06:26 +00:00
|
|
|
unsigned int width;
|
|
|
|
|
unsigned int height;
|
2025-09-28 06:52:49 +00:00
|
|
|
}* HMILSKOLL;
|
2025-09-28 02:51:15 +00:00
|
|
|
|
2025-09-28 06:52:49 +00:00
|
|
|
typedef struct _MilskoColor {
|
2025-09-28 02:51:15 +00:00
|
|
|
unsigned long pixel;
|
|
|
|
|
}* HMILSKOCOLOR;
|
|
|
|
|
|
|
|
|
|
#endif
|