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

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