diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-21 21:04:54 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-21 21:04:54 +1300 |
commit | b4438b2fbe895694be98e6e8426103deefc51448 (patch) | |
tree | 760d86cd7c06420a91dad102cc9546aee73146fc /body/c_fl.h | |
parent | a4703a65b015140cd4a7a985db66264875ade734 (diff) |
Split public API and private implementation files into different directories
Diffstat (limited to 'body/c_fl.h')
-rw-r--r-- | body/c_fl.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/body/c_fl.h b/body/c_fl.h new file mode 100644 index 0000000..8ef9df5 --- /dev/null +++ b/body/c_fl.h @@ -0,0 +1,46 @@ + + +// Programmed by Jedidiah Barber +// Released into the public domain + + +#ifndef FL_GUARD +#define FL_GUARD + + +extern "C" const short fl_mod_command; + + +extern "C" size_t c_pointer_size(); + + +extern "C" unsigned int fl_enum_rgb_color(unsigned char r, unsigned char g, unsigned char b); + + +extern "C" int fl_abi_check(int v); +extern "C" int fl_abi_version(); +extern "C" int fl_api_version(); +extern "C" double fl_version(); + + +extern "C" void fl_awake(); +extern "C" void fl_lock(); +extern "C" void fl_unlock(); + + +extern "C" int fl_get_damage(); +extern "C" void fl_set_damage(int v); +extern "C" void fl_flush(); +extern "C" void fl_redraw(); + + +extern "C" int fl_check(); +extern "C" int fl_ready(); +extern "C" int fl_wait(); +extern "C" int fl_wait2(double s); +extern "C" int fl_run(); + + +#endif + + |