summaryrefslogtreecommitdiff
path: root/c_fl_input.h
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-05-26 04:35:58 +1000
committerJed Barber <jjbarber@y7mail.com>2016-05-26 04:35:58 +1000
commit2aac034b614d6de39f4aee9f41dba8f2bcc63d8d (patch)
treec3a06709e36cccb576dddf81614c8cddfefffb9f /c_fl_input.h
parent0f28695be695a0b2e8fbfff388c61cb69cdc03af (diff)
In the interests of readability and consistent style...
Diffstat (limited to 'c_fl_input.h')
-rw-r--r--c_fl_input.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/c_fl_input.h b/c_fl_input.h
index 6cec6ec..b3b1190 100644
--- a/c_fl_input.h
+++ b/c_fl_input.h
@@ -4,11 +4,11 @@
#define FL_INPUT_GUARD
-typedef void* my_fl_input;
+typedef void* 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);
+extern "C" INPUT new_fl_input(int x, int y, int w, int h, char* label);
+extern "C" void free_fl_input(INPUT i);
#endif