arun/src/arun.ads

40 lines
1.6 KiB
Ada

------------------------------------------------------------------------------
--
-- Copyright (C) 2017 R. Tyler Croy <tyler@linux.com>
--
-- This program is free software; you can redistribute it and/or
-- modify it under the terms of the GNU General Public License
-- as published by the Free Software Foundation; either version 2
-- of the License, or (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program; if not, write to the Free Software
-- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
------------------------------------------------------------------------------
package Arun is
procedure Main;
type Launcher_Type is interface;
procedure Initialize (L : in Launcher_Type'Class) is abstract;
-- Launcher_Type-specific initialization routine
function Find_Full_Path (L : in Launcher_Type;
Path_Snippet : in String) return String is abstract;
-- Determine the full path of the snippet based on PATH or other environment
-- variables.
--
-- Will return an empty string if a full path was not discoverable.
procedure Execute (L : in Launcher_Type;
Executable : in String) is abstract;
-- Spawn the Executable in place of the current process
end Arun;