From f2352c6df585d817b3613145ec81446f917dcc21 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Sun, 2 Mar 2025 16:06:45 +1300 Subject: Filled holes in FLTK.Static API --- doc/fl_(fltk-events).html | 35 +++++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) (limited to 'doc/fl_(fltk-events).html') diff --git a/doc/fl_(fltk-events).html b/doc/fl_(fltk-events).html index c9846fd..6d17e85 100644 --- a/doc/fl_(fltk-events).html +++ b/doc/fl_(fltk-events).html @@ -41,6 +41,16 @@ Event_Dispatch + + void * + System_Event + + + + Fl_System_Handler + System_Handler + + @@ -54,7 +64,18 @@ static void add_handler(Fl_Event_Handler h);
 procedure Add_Handler
-       (Func : in Event_Handler);
+       (Func : in not null Event_Handler);
+
+ + + +
+static void add_system_handler(Fl_System_Handler h,
+    void *data);
+
+
+procedure Add_System_Handler
+       (Func : in not null System_Handler);
 
@@ -576,7 +597,17 @@ static void remove_handler(Fl_Event_Handler h);
 procedure Remove_Handler
-       (Func : in Event_Handler);
+       (Func : in not null Event_Handler);
+
+ + + +
+static void remove_system_handler(Fl_System_Handler h);
+
+
+procedure Remove_System_Handler
+       (Func : in not null System_Handler);
 
-- cgit