home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / s-sequio.ads < prev    next >
Text File  |  1996-09-28  |  3KB  |  73 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                 S Y S T E M . S E Q U E N T I A L _ I O                  --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.3 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- The GNAT library is free software; you can redistribute it and/or modify --
  14. -- it under terms of the GNU Library General Public License as published by --
  15. -- the Free Software  Foundation; either version 2, or (at your option) any --
  16. -- later version.  The GNAT library is distributed in the hope that it will --
  17. -- be useful, but WITHOUT ANY WARRANTY;  without even  the implied warranty --
  18. -- of MERCHANTABILITY  or  FITNESS FOR  A PARTICULAR PURPOSE.  See the  GNU --
  19. -- Library  General  Public  License for  more  details.  You  should  have --
  20. -- received  a copy of the GNU  Library  General Public License  along with --
  21. -- the GNAT library;  see the file  COPYING.LIB.  If not, write to the Free --
  22. -- Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.        --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. --  This package contains the declaration of the control block used for
  27. --  Seqential_IO. This must be declared at the outer library level. It also
  28. --  contains code that is shared between instances of Sequential_IO.
  29.  
  30. with System.File_Control_Block;
  31.  
  32. package System.Sequential_IO is
  33.  
  34.    package FCB renames System.File_Control_Block;
  35.  
  36.    type Sequential_AFCB is new FCB.AFCB with null record;
  37.    --  No additional fields required for Sequential_IO
  38.  
  39.    function AFCB_Allocate
  40.      (Control_Block : Sequential_AFCB)
  41.       return          FCB.AFCB_Ptr;
  42.  
  43.    procedure AFCB_Close (File : access Sequential_AFCB);
  44.    procedure AFCB_Free  (File : access Sequential_AFCB);
  45.  
  46.    procedure Read
  47.      (File : in out Sequential_AFCB;
  48.       Item : out Ada.Streams.Stream_Element_Array;
  49.       Last : out Ada.Streams.Stream_Element_Offset);
  50.    --  Required overriding of Read, not actually used for Sequential_IO
  51.  
  52.    procedure Write
  53.      (File : in out Sequential_AFCB;
  54.       Item : in Ada.Streams.Stream_Element_Array);
  55.    --  Required overriding of Write, not actually used for Sequential_IO
  56.  
  57.    type File_Type is access all Sequential_AFCB;
  58.    --  File_Type in individual instantiations is derived from this type
  59.  
  60.    procedure Create
  61.      (File : in out File_Type;
  62.       Mode : in FCB.File_Mode := FCB.Out_File;
  63.       Name : in String := "";
  64.       Form : in String := "");
  65.  
  66.    procedure Open
  67.      (File : in out File_Type;
  68.       Mode : in FCB.File_Mode;
  69.       Name : in String;
  70.       Form : in String := "");
  71.  
  72. end System.Sequential_IO;
  73.