home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 13 / AACD13.ISO / AACD / Resources / System / BoingBag1 / Contributions / InstallerNG / GUI-API / savagelib / include / savage / guicontext.h < prev    next >
C/C++ Source or Header  |  1999-08-14  |  515b  |  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.