home *** CD-ROM | disk | FTP | other *** search
-
- /* *** global.c *************************************************************
- *
- * XText -- Global Variable Declarations
- * from Book 1 of the Amiga Programmers' Suite by RJ Mical
- *
- * 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 notice is retained, ok? Thanks.
- *
- * HISTORY NAME DESCRIPTION
- * ----------- -------------- --------------------------------------------
- * 27 Oct 86 RJ Add XText buffer stuff, prepare for release
- * March 86 RJ Incorporated this code in Sidecar
- * 26 Jan 86 RJ Mical Created this file (on my birthday!)
- *
- * *********************************************************************** */
-
-
- #define EGLOBAL_CANCEL /* This prevents eglobal.c from being included */
- #include "xtext.h"
-
-
-
- /* === System Global Variables ========================================== */
- struct IntuitionBase *IntuitionBase = NULL;
- struct GfxBase *GfxBase = NULL;
- struct DiskfontBase *DiskfontBase = NULL;
-
- struct TextAttr SafeFont =
- {
- (UBYTE *)"topaz.font",
- TOPAZ_EIGHTY,
- 0,
- FS_NORMAL
- };
-
-
-
-
-