summaryrefslogtreecommitdiff
path: root/src/c_fl_file_input.h
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2017-05-14 11:13:43 +1000
committerJed Barber <jjbarber@y7mail.com>2017-05-14 11:13:43 +1000
commit371cccdf78fa9aaf49158ea57e598abcd5ff56f0 (patch)
treee2769d0bc627f498e51aad2ef720d0926d0a626a /src/c_fl_file_input.h
parentf4b68da1d14d39ab4140d8c5e7fbbf45525e7e77 (diff)
File_Input, Float_Input, Integer_Input, Multiline_Input, Output, Multiline_Output, Secret_Input, Input, Menu, Menu_Bar, Menu_Button widgets all now have a Handle method
Diffstat (limited to 'src/c_fl_file_input.h')
-rw-r--r--src/c_fl_file_input.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/c_fl_file_input.h b/src/c_fl_file_input.h
index a54a259..d771389 100644
--- a/src/c_fl_file_input.h
+++ b/src/c_fl_file_input.h
@@ -7,8 +7,11 @@
typedef void* FILE_INPUT;
-extern "C" void file_input_set_draw_hook(FILE_INPUT n, void * d);
-extern "C" void fl_file_input_draw(FILE_INPUT n);
+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);