home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 073.lha / FileIO / global.c < prev    next >
Encoding:
C/C++ Source or Header  |  1987-06-02  |  1.2 KB  |  37 lines

  1.  
  2. /* *** global.c *************************************************************
  3.  *
  4.  * File IO Suite  --  Global Variable Definitions
  5.  *     from Book 1 of the Amiga Programmers' Suite by RJ Mical
  6.  *         (available soon if not already)
  7.  *
  8.  * Copyright (C) 1986, 1987, Robert J. Mical
  9.  * All Rights Reserved.
  10.  *
  11.  * Created for Amiga developers.
  12.  * Any or all of this code can be used in any program as long as this
  13.  * entire copyright notice is retained, ok?
  14.  *
  15.  * HISTORY      NAME            DESCRIPTION
  16.  * -----------  --------------  --------------------------------------------
  17.  * 4 Feb 87     RJ              Real release
  18.  * 12 Aug 86    RJ >:-{)*       Prepare (clean house) for release
  19.  * 3 May 86     RJ              Fix prop gadget for both 1.1 and 1.2
  20.  * 1 Feb 86     =RJ Mical=      Created this file.
  21.  *
  22.  * *********************************************************************** */
  23.  
  24.  
  25. #define EGLOBAL_CANCEL  /* This prevents eglobal.c from being included */
  26. #define FILEIO_SOURCEFILE
  27. #include "fileio.h"
  28.  
  29.  
  30. /* === System Global Variables ========================================== */
  31. struct IntuitionBase *IntuitionBase = NULL;
  32. struct GfxBase *GfxBase = NULL;
  33. struct DosLibrary *DosBase = NULL;
  34. struct IconBase *IconBase = NULL;
  35.  
  36.  
  37.