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

  1.  
  2. /* *** global.c *************************************************************
  3.  *
  4.  * XText  --  Global Variable Declarations
  5.  *  from Book 1 of the Amiga Programmers' Suite by RJ Mical
  6.  *
  7.  * Copyright (C) 1986, 1987, Robert J. Mical
  8.  * All Rights Reserved.
  9.  *
  10.  * Created for Amiga developers.
  11.  * Any or all of this code can be used in any program as long as this
  12.  * entire notice is retained, ok?  Thanks.
  13.  *
  14.  * HISTORY       NAME            DESCRIPTION
  15.  * -----------   --------------  --------------------------------------------
  16.  * 27 Oct 86     RJ              Add XText buffer stuff, prepare for release
  17.  * March 86      RJ              Incorporated this code in Sidecar
  18.  * 26 Jan 86     RJ Mical        Created this file (on my birthday!)
  19.  *
  20.  * *********************************************************************** */
  21.  
  22.  
  23. #define EGLOBAL_CANCEL     /* This prevents eglobal.c from being included */
  24. #include "xtext.h"
  25.  
  26.  
  27.  
  28. /* === System Global Variables ========================================== */
  29. struct IntuitionBase *IntuitionBase = NULL;
  30. struct GfxBase *GfxBase = NULL;
  31. struct DiskfontBase *DiskfontBase = NULL;
  32.  
  33. struct TextAttr SafeFont =
  34.       {
  35.       (UBYTE *)"topaz.font",
  36.       TOPAZ_EIGHTY,
  37.       0,
  38.       FS_NORMAL
  39.       };
  40.  
  41.  
  42.  
  43.  
  44.