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 --- body/fltk-show_argv.ads | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 body/fltk-show_argv.ads (limited to 'body/fltk-show_argv.ads') diff --git a/body/fltk-show_argv.ads b/body/fltk-show_argv.ads deleted file mode 100644 index faa93a4..0000000 --- a/body/fltk-show_argv.ads +++ /dev/null @@ -1,37 +0,0 @@ - - --- Programmed by Jedidiah Barber --- Released into the public domain - - -with - - Interfaces.C; - - -private package FLTK.Show_Argv is - - - -- Used for implementing show(argc,argv) - - -- Dispatch marshalls the data, calls the function, then does cleanup - - type Show_With_Args_Func is access procedure - (CObj : in Storage.Integer_Address; - Argc : in Interfaces.C.int; - Argv : in Storage.Integer_Address); - - procedure Dispatch - (Func : in Show_With_Args_Func; - CObj : in Storage.Integer_Address); - - -private - - - pragma Convention (C, Show_With_Args_Func); - - -end FLTK.Show_Argv; - - -- cgit