-- Reporter bindings for Ada 95
-- Reporter module by Chris Morison & Martin Avison
-- Ada 95 bindings by Stefan Bellon

with Interfaces.C;

package Reporter is

   procedure Report (Text : in String); -- for backwards compatibility
                                        -- use Text instead!
   procedure Clear (Text : in String := "");
   procedure On (Text : in String := "");
   procedure Off (Text : in String := "");
   procedure Close;

   procedure Quit;
   procedure Where;
   procedure Text (Text : in String := "");
   procedure Poll (Reason : in Natural := 0);
   procedure Registers (Text : in String := "");
   procedure Save (Text : in String := "");

end Reporter;
