summaryrefslogtreecommitdiff
path: root/src/fltk_binding/c_fl_input.h
blob: 6cec6ec769252b14acc6cc3e1c1ef16aa59277b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15


#ifndef FL_INPUT_GUARD
#define FL_INPUT_GUARD


typedef void* my_fl_input;


extern "C" my_fl_input new_fl_input(int x, int y, int w, int h, char * label);
extern "C" void free_fl_input(my_fl_input f);


#endif