From f422ec5ac8102abb99a92d4742b4baa88130b75f Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Tue, 15 Apr 2025 00:41:02 +1200 Subject: Executable now knows where it is, installs and finds logo image correctly, better build config --- hereiam/here_i_am.ads | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 hereiam/here_i_am.ads (limited to 'hereiam/here_i_am.ads') diff --git a/hereiam/here_i_am.ads b/hereiam/here_i_am.ads new file mode 100644 index 0000000..367ac57 --- /dev/null +++ b/hereiam/here_i_am.ads @@ -0,0 +1,25 @@ + + +-- Programmed by Jedidiah Barber +-- Released into the public domain + + +package Here_I_Am is + + + Where_Is_Error : exception; + + + -- Provides the full name and path of the running executable + function Executable + return String; + + + -- Provides the full name and path of the running library + function Module + return String; + + +end Here_I_Am; + + -- cgit