aboutsummaryrefslogtreecommitdiff
path: root/src/c_fl.cpp
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-01-21 21:04:54 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2025-01-21 21:04:54 +1300
commitb4438b2fbe895694be98e6e8426103deefc51448 (patch)
tree760d86cd7c06420a91dad102cc9546aee73146fc /src/c_fl.cpp
parenta4703a65b015140cd4a7a985db66264875ade734 (diff)
Split public API and private implementation files into different directories
Diffstat (limited to 'src/c_fl.cpp')
-rw-r--r--src/c_fl.cpp106
1 files changed, 0 insertions, 106 deletions
diff --git a/src/c_fl.cpp b/src/c_fl.cpp
deleted file mode 100644
index 50eed9e..0000000
--- a/src/c_fl.cpp
+++ /dev/null
@@ -1,106 +0,0 @@
-
-
-// Programmed by Jedidiah Barber
-// Released into the public domain
-
-
-#include <FL/Enumerations.H>
-#include <FL/Fl.H>
-#include "c_fl.h"
-
-
-
-
-const short fl_mod_command = FL_COMMAND >> 16;
-
-
-
-
-size_t c_pointer_size() {
- return sizeof(void*);
-}
-
-
-
-
-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);
-}
-
-int fl_abi_version() {
- return Fl::abi_version();
-}
-
-int fl_api_version() {
- return Fl::api_version();
-}
-
-double fl_version() {
- return Fl::version();
-}
-
-
-
-
-void fl_awake() {
- Fl::awake();
-}
-
-void fl_lock() {
- Fl::lock();
-}
-
-void fl_unlock() {
- Fl::unlock();
-}
-
-
-
-
-int fl_get_damage() {
- return Fl::damage();
-}
-
-void fl_set_damage(int v) {
- Fl::damage(v);
-}
-
-void fl_flush() {
- Fl::flush();
-}
-
-void fl_redraw() {
- Fl::redraw();
-}
-
-
-
-
-int fl_check() {
- return Fl::check();
-}
-
-int fl_ready() {
- return Fl::ready();
-}
-
-int fl_wait() {
- return Fl::wait();
-}
-
-int fl_wait2(double s) {
- return Fl::wait(s);
-}
-
-int fl_run() {
- return Fl::run();
-}
-
-