// Please see the README file or the LEGAL NOTES-section in the manual before modifying, compiling or using 'xmrm' // Idea: Manfred Kopp // Programming: Gerhard Waldhör, Andreas Artmann #include #include "const.h" int obj_a_handler(FL_OBJECT *obj, int event, FL_Coord mx, FL_Coord my, int key, void *xev); class AreaClass { unsigned char *area_buff; public: AreaClass(); ~AreaClass(); int InitMem(int w,int h); unsigned char *GetPicPointer(); void SetPicPointer(unsigned char *area_ptr); };