diff options
Diffstat (limited to 'src/c_fl_clock_output.h')
-rw-r--r-- | src/c_fl_clock_output.h | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/src/c_fl_clock_output.h b/src/c_fl_clock_output.h deleted file mode 100644 index d77f989..0000000 --- a/src/c_fl_clock_output.h +++ /dev/null @@ -1,42 +0,0 @@ - - -#ifndef FL_CLOCK_OUTPUT_GUARD -#define FL_CLOCK_OUTPUT_GUARD - - - - -typedef void* CLOCK_OUTPUT; - - - - -extern "C" void clock_output_set_draw_hook(CLOCK_OUTPUT c, void * d); -extern "C" void fl_clock_output_draw(CLOCK_OUTPUT c); -extern "C" void clock_output_set_handle_hook(CLOCK_OUTPUT c, void * h); -extern "C" int fl_clock_output_handle(CLOCK_OUTPUT c, int e); - - - - -extern "C" CLOCK_OUTPUT new_fl_clock_output(int x, int y, int w, int h, char* label); -extern "C" void free_fl_clock_output(CLOCK_OUTPUT c); - - - - -extern "C" int fl_clock_output_get_hour(CLOCK_OUTPUT c); -extern "C" int fl_clock_output_get_minute(CLOCK_OUTPUT c); -extern "C" int fl_clock_output_get_second(CLOCK_OUTPUT c); - - -extern "C" ulong fl_clock_output_get_value(CLOCK_OUTPUT c); -extern "C" void fl_clock_output_set_value(CLOCK_OUTPUT c, ulong v); -extern "C" void fl_clock_output_set_value2(CLOCK_OUTPUT c, int h, int m, int s); - - -extern "C" void fl_clock_output_draw2(CLOCK_OUTPUT c, int x, int y, int w, int h); - - -#endif - |