/* $Id$ */ #ifndef __MW_GDI_H__ #define __MW_GDI_H__ #include typedef struct _MwLL * MwLL, MwLLRec; typedef struct _MwLLColor *MwLLColor, MwLLColorRec; #include #include #include struct _MwLL { void* user; MwLLHandler handler; }; struct _MwColor { int red; int green; int blue; }; #endif