home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / disks / disk433.lzh / Gwin / exsrc.lzh / gwin.user.h < prev    next >
C/C++ Source or Header  |  1991-01-12  |  1KB  |  46 lines

  1. /*******************************************************/
  2. /*                                                     */
  3. /* GWIN INCLUDE FILE                                   */
  4. /*                                                     */
  5. /*******************************************************/
  6.  
  7. #include <exec/types.h>
  8. #include <graphics/gfxbase.h>
  9. #include <graphics/display.h>
  10. #include <graphics/regions.h>
  11. #include <graphics/gfx.h>
  12. #include <graphics/gfxmacros.h>
  13. #include <intuition/intuitionbase.h>
  14. #include <intuition/intuition.h>
  15. #include <stdio.h>
  16. #include <exec/memory.h>
  17. #include <hardware/custom.h>
  18. #include <hardware/dmabits.h>
  19. #include <libraries/dos.h>
  20. #include <libraries/diskfont.h>
  21. #include <devices/audio.h>
  22. #include <math.h>
  23.  
  24. #define SCR_MAX 2
  25. #define WIN_MAX 50
  26. #define MAXVECTORS 1000
  27. /* 640 x 400 / 8  (page 230 Mortimore) */
  28. #define RASTERSIZE 32000
  29.  
  30. /*******************************************************/
  31. /*                                                     */
  32. /* GLOBAL VARIABLES                                    */
  33. /*                                                     */
  34. /*******************************************************/
  35.  
  36. struct RastPort *rport1;
  37. struct Window *win[WIN_MAX];
  38. struct Screen *scr[SCR_MAX];
  39.  
  40. struct GfxBase *GfxBase;
  41. struct IntuitionBase *IntuitionBase;
  42. struct DiskfontBase *DiskfontBase;
  43.  
  44. /* extern short Enable_Abort; */
  45.  
  46.