aboutsummaryrefslogtreecommitdiff
path: root/hereiam/here_i_am.ads
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-04-15 00:41:02 +1200
committerJedidiah Barber <contact@jedbarber.id.au>2025-04-15 00:41:02 +1200
commitf422ec5ac8102abb99a92d4742b4baa88130b75f (patch)
tree8fd8daebd34504dfd0398a46dedbd7635648d726 /hereiam/here_i_am.ads
parent78bf43af446adf83fdc0554c63ccdb631836d916 (diff)
Executable now knows where it is, installs and finds logo image correctly, better build config
Diffstat (limited to 'hereiam/here_i_am.ads')
-rw-r--r--hereiam/here_i_am.ads25
1 files changed, 25 insertions, 0 deletions
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;
+
+