diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-04-14 16:01:23 +1200 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-04-14 16:01:23 +1200 |
commit | 2c15b311f6942ec92fa44d91831ba991d40ac545 (patch) | |
tree | 632459455a86af1e1168c750356cb1667c716e7f /body/c_fl_input.cpp | |
parent | d250a4858b95697ecf792bd9d31e712ca441c73e (diff) |
Diffstat (limited to 'body/c_fl_input.cpp')
-rw-r--r-- | body/c_fl_input.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/body/c_fl_input.cpp b/body/c_fl_input.cpp index 799c76e..73517a7 100644 --- a/body/c_fl_input.cpp +++ b/body/c_fl_input.cpp @@ -11,18 +11,13 @@ -// Telprot stopovers +// Telprot stopover extern "C" void text_input_extra_init_hook(void * aobj, int x, int y, int w, int h, const char * l); void fl_text_input_extra_init(void * adaobj, int x, int y, int w, int h, const char * label) { text_input_extra_init_hook(adaobj, x, y, w, h, label); } -extern "C" void text_input_extra_final_hook(void * aobj); -void fl_text_input_extra_final(void * adaobj) { - text_input_extra_final_hook(adaobj); -} - |