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


#ifndef FL_FILE_INPUT_GUARD
#define FL_FILE_INPUT_GUARD




typedef void* FILE_INPUT;




extern "C" void file_input_set_draw_hook(FILE_INPUT i, void * d);
extern "C" void fl_file_input_draw(FILE_INPUT i);
extern "C" void file_input_set_handle_hook(FILE_INPUT i, void * h);
extern "C" int fl_file_input_handle(FILE_INPUT i, int e);




extern "C" FILE_INPUT new_fl_file_input(int x, int y, int w, int h, char* label);
extern "C" void free_fl_file_input(FILE_INPUT i);


#endif