diff options
author | Jed Barber <jjbarber@y7mail.com> | 2016-05-28 14:53:13 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2016-05-28 14:53:13 +1000 |
commit | f15e45791a0658fd5a062629f59c4815ce8b2489 (patch) | |
tree | ed455c095cba8777b8a9a0c6dfe7b994023c5cd1 /c_fl_single_window.h | |
parent | 32062c660307d5b34f46b1f7b75d17a184930e71 (diff) |
Text editors, single and menu windows
Diffstat (limited to 'c_fl_single_window.h')
-rw-r--r-- | c_fl_single_window.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/c_fl_single_window.h b/c_fl_single_window.h new file mode 100644 index 0000000..96f6d5b --- /dev/null +++ b/c_fl_single_window.h @@ -0,0 +1,19 @@ + + +#ifndef FL_SINGLE_WINDOW_GUARD +#define FL_SINGLE_WINDOW_GUARD + + +typedef void* SINGLEWINDOW; + + +extern "C" SINGLEWINDOW new_fl_single_window(int x, int y, int w, int h, char* label); +extern "C" SINGLEWINDOW new_fl_single_window2(int x, int y); +extern "C" void free_fl_single_window(SINGLEWINDOW w); + +extern "C" void fl_single_window_show(SINGLEWINDOW w); +extern "C" void fl_single_window_flush(SINGLEWINDOW w); + + +#endif + |