/* $Id$ */ #ifndef __MILSKO_LL_H__ #define __MILSKO_LL_H__ #include #ifdef _MILSKO #ifdef USE_X11 #include #endif #ifdef USE_GDI #include #endif #else typedef void* HMILSKOLL; typedef void* HMILSKOCOLOR; #endif HMILSKOLL MilskoLLCreate(HMILSKOLL parent, int x, int y, int width, int height); void MilskoLLDestroy(HMILSKOLL handle); void MilskoLLPolygon(HMILSKOLL handle, MilskoPoint* points, int points_count, HMILSKOCOLOR color); HMILSKOCOLOR MilskoLLAllocColor(HMILSKOLL handle, int r, int g, int b); void MilskoLLGetXYWH(HMILSKOLL handle, int* x, int* y, unsigned int* w, unsigned int* h); int MilskoLLPending(HMILSKOLL handle); void MilskoLLNextEvent(HMILSKOLL handle); #endif