//  Programmed by Jedidiah Barber
//  Released into the public domain


#ifndef FL_MULTILINE_OUTPUT_GUARD
#define FL_MULTILINE_OUTPUT_GUARD




typedef void* MULTILINE_OUTPUT;




extern "C" void multiline_output_set_draw_hook(MULTILINE_OUTPUT i, void * d);
extern "C" void fl_multiline_output_draw(MULTILINE_OUTPUT i);
extern "C" void multiline_output_set_handle_hook(MULTILINE_OUTPUT i, void * h);
extern "C" int fl_multiline_output_handle(MULTILINE_OUTPUT i, int e);




extern "C" MULTILINE_OUTPUT new_fl_multiline_output(int x, int y, int w, int h, char* label);
extern "C" void free_fl_multiline_output(MULTILINE_OUTPUT i);


#endif