summaryrefslogtreecommitdiff
path: root/src/c_fl_fill_dial.h
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-01-16 14:21:05 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2025-01-16 14:21:05 +1300
commitdbf6f4db24aee7315b2782a87e127367887e2036 (patch)
tree91f5af52dbdf6be9e1f5026bcf354a6455dd411d /src/c_fl_fill_dial.h
parentba1719013e5bab82a2accb4aadfd8451c3ebc931 (diff)
Changed reinterpret_cast to static_cast where applicable
Diffstat (limited to 'src/c_fl_fill_dial.h')
-rw-r--r--src/c_fl_fill_dial.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/c_fl_fill_dial.h b/src/c_fl_fill_dial.h
index 84ecab8..00a8094 100644
--- a/src/c_fl_fill_dial.h
+++ b/src/c_fl_fill_dial.h
@@ -8,15 +8,15 @@
#define FL_FILL_DIAL_GUARD
-typedef void* FILL_DIAL;
+typedef void* FILLDIAL;
-extern "C" FILL_DIAL new_fl_fill_dial(int x, int y, int w, int h, char* label);
-extern "C" void free_fl_fill_dial(FILL_DIAL v);
+extern "C" FILLDIAL new_fl_fill_dial(int x, int y, int w, int h, char* label);
+extern "C" void free_fl_fill_dial(FILLDIAL v);
-extern "C" void fl_fill_dial_draw(FILL_DIAL v);
-extern "C" int fl_fill_dial_handle(FILL_DIAL v, int e);
+extern "C" void fl_fill_dial_draw(FILLDIAL v);
+extern "C" int fl_fill_dial_handle(FILLDIAL v, int e);
#endif