diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-02-10 22:50:09 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-02-10 22:50:09 +1300 |
commit | 446989277ad276e9820e54ea1fb4ed550b93e998 (patch) | |
tree | a37115bfb16f215f93a46bd32829c3306e938cf3 /body/c_fl_screen.cpp | |
parent | 11d2b6c11604a1e355e3f9b40762f59b4d434e07 (diff) |
Filled holes in Enumerations and FLTK (Screen) APIs
Diffstat (limited to 'body/c_fl_screen.cpp')
-rw-r--r-- | body/c_fl_screen.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/body/c_fl_screen.cpp b/body/c_fl_screen.cpp index 88550bd..d0e8019 100644 --- a/body/c_fl_screen.cpp +++ b/body/c_fl_screen.cpp @@ -8,6 +8,15 @@ #include "c_fl_screen.h" + + +void fl_screen_display(const char * v) { + Fl::display(v); +} + + + + int fl_screen_x() { return Fl::x(); } |