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 >
Wrap
C/C++ Source or Header
|
1999-08-14
|
515b
|
25 lines
#ifndef SAVAGE_GUICONTEXT_H
#define SAVAGE_GUICONTEXT_H
#include <exec/types.h>
#include <intuition/intuition.h>
#include <graphics/text.h>
struct GUIContext
{
struct Screen *gc_Screen;
struct DrawInfo *gc_DrawInfo;
struct TextFont *gc_TextFont;
struct TextFont *gc_FixedFont;
struct TextFont *gc_TopazFont;
struct TextFont *gc_UserFont;
struct TextExtent gc_TextExtend;
struct TextAttr *gc_TextAttr;
UWORD *gc_Pens;
struct VisualInfo *gc_VisualInfo;
};
#endif