summaryrefslogtreecommitdiff
path: root/src/c_fl_output.h
blob: d5959ecda417adc496e0e7ff92c88b6e48c9902b (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


#ifndef FL_OUTPUT_GUARD
#define FL_OUTPUT_GUARD




//  using just "OUTPUT" doesn't compile for some reason
//  some sort of name clash?
typedef void* OUTPUTT;




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




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


#endif