home *** CD-ROM | disk | FTP | other *** search
-
- /* *** global.c *************************************************************
- *
- * File IO Suite -- Global Variable Definitions
- * from Book 1 of the Amiga Programmers' Suite by RJ Mical
- * (available soon if not already)
- *
- * Copyright (C) 1986, 1987, Robert J. Mical
- * All Rights Reserved.
- *
- * Created for Amiga developers.
- * Any or all of this code can be used in any program as long as this
- * entire copyright notice is retained, ok?
- *
- * HISTORY NAME DESCRIPTION
- * ----------- -------------- --------------------------------------------
- * 4 Feb 87 RJ Real release
- * 12 Aug 86 RJ >:-{)* Prepare (clean house) for release
- * 3 May 86 RJ Fix prop gadget for both 1.1 and 1.2
- * 1 Feb 86 =RJ Mical= Created this file.
- *
- * *********************************************************************** */
-
-
- #define EGLOBAL_CANCEL /* This prevents eglobal.c from being included */
- #define FILEIO_SOURCEFILE
- #include "fileio.h"
-
-
- /* === System Global Variables ========================================== */
- struct IntuitionBase *IntuitionBase = NULL;
- struct GfxBase *GfxBase = NULL;
- struct DosLibrary *DosBase = NULL;
- struct IconBase *IconBase = NULL;
-
-
-