home *** CD-ROM | disk | FTP | other *** search
- /*-------------------------------------------------------*
- | File: GLOBAL.h - Declaration of all global variables. |
- | Variables needed to have a defined value at the |
- | program start are ALWAYS explicitely initialised. |
- *-------------------------------------------------------*/
-
- /**
- | - variables for cback.o;
- | - library bases;
- | - Intuition pointers and structures for the output window;
- | - Intuition pointers and structures for the AppWindow;
- | - Intuition pointers and structures for the break window;
- | - pointers and structures related to disk reading
- **/
-
- long __stack = 4000;
- char *__procname = "DT";
- long __priority = 0;
- long __BackGroundIO = 0;
-
- struct Library *IntuitionBase = NULL;
- struct Library *GfxBase = NULL;
- struct Library *LayersBase = NULL;
- struct Library *GadToolsBase = NULL;
- struct Library *WorkbenchBase = NULL;
-
- struct Screen *pScr = NULL;
- struct Window *pWind = NULL;
- struct TextFont *GadFont = NULL;
- APTR pVI = NULL;
- struct RastPort *pClearRP = NULL;
- struct Gadget *pScroller;
- struct Gadget *pGlist;
-
- struct MsgPort *appWinPort = NULL;
- struct AppWindow *pAWind = NULL;
-
- struct Window *pBWind = NULL;
- struct Gadget *pBGad = NULL;
-
- struct MsgPort *diskPort = NULL;
- struct IOExtTD *diskReq = NULL;
- BYTE *diskBuffer = NULL;
- struct FileInfoBlock *pFIB = NULL;
- ULONG diskBufferLength;
-