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


#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