with System; use System;
package Engine is
-- The engine's main procedure for running the application. This is exported
-- to the C runtime to be called by the executable's actual main procedure
-- after Allegro initialization and Ada elaboration.
function Engine_Main( argc : Integer; argv : Address ) return Integer;
private
pragma Export( C, Engine_Main, "engine_main" );
end Engine;