summaryrefslogtreecommitdiff
path: root/src/c_fl_multiline_output.h
blob: 6517e216a5f7eabc57dc18d2ca94025c4d600dba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31


//  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