summaryrefslogtreecommitdiff
path: root/src/c_fl.cpp
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-01-21 20:51:57 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2025-01-21 20:51:57 +1300
commita4703a65b015140cd4a7a985db66264875ade734 (patch)
tree2d995abcf37820e96f292b7fc62f099e849d49a6 /src/c_fl.cpp
parent5f4595813d3ab42bad6e86e6509d0cbedc972926 (diff)
Alpha animation assessment algorithm added
Diffstat (limited to 'src/c_fl.cpp')
-rw-r--r--src/c_fl.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/c_fl.cpp b/src/c_fl.cpp
index 1e8fd1c..50eed9e 100644
--- a/src/c_fl.cpp
+++ b/src/c_fl.cpp
@@ -4,6 +4,7 @@
// Released into the public domain
+#include <FL/Enumerations.H>
#include <FL/Fl.H>
#include "c_fl.h"
@@ -22,6 +23,13 @@ size_t c_pointer_size() {
+unsigned int fl_enum_rgb_color(unsigned char r, unsigned char g, unsigned char b) {
+ return fl_rgb_color(r, g, b);
+}
+
+
+
+
int fl_abi_check(int v) {
return Fl::abi_check(v);
}