/* $Id$ */ #ifndef __MW_X11_H__ #define __MW_X11_H__ #include typedef struct _MwLL * MwLL, MwLLRec; typedef struct _MwLLColor *MwLLColor, MwLLColorRec; #include #include #include #include struct _MwLL { Display* display; Window window; GC gc; Colormap colormap; void* user; MwLLHandler handler; }; struct _MwLLColor { unsigned long pixel; int red; int green; int blue; }; #endif