home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Misc / InstallerNG / developer / savagelib / include / savage / guicontext.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-08-14  |  515 b   |  25 lines

  1.  
  2. #ifndef SAVAGE_GUICONTEXT_H
  3. #define SAVAGE_GUICONTEXT_H
  4.  
  5. #include <exec/types.h>
  6. #include <intuition/intuition.h>
  7. #include <graphics/text.h>
  8.  
  9. struct GUIContext
  10. {
  11.   struct Screen     *gc_Screen;
  12.   struct DrawInfo   *gc_DrawInfo;
  13.   struct TextFont   *gc_TextFont;
  14.   struct TextFont   *gc_FixedFont;
  15.   struct TextFont   *gc_TopazFont;
  16.   struct TextFont   *gc_UserFont;
  17.   struct TextExtent  gc_TextExtend;
  18.   struct TextAttr   *gc_TextAttr;
  19.   UWORD             *gc_Pens;
  20.   struct VisualInfo *gc_VisualInfo;
  21. };
  22.  
  23. #endif
  24.  
  25.