summaryrefslogtreecommitdiff
path: root/src/c_fl_output.h
blob: 8684d05fb975874084f36290a0d9b9050e122b31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22


#ifndef FL_OUTPUT_GUARD
#define FL_OUTPUT_GUARD


//  using just "OUTPUT" doesn't compile for some reason
typedef void* OUTPUTT;


extern "C" void output_set_draw_hook(OUTPUTT i, void * d);
extern "C" void fl_output_draw(OUTPUTT i);
extern "C" void output_set_handle_hook(OUTPUTT i, void * h);
extern "C" int fl_output_handle(OUTPUTT i, int e);


extern "C" OUTPUTT new_fl_output(int x, int y, int w, int h, char* label);
extern "C" void free_fl_output(OUTPUTT i);


#endif