home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 580a.lha / HDFView_v3.01 / source.LZH / source / src / globals.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-11-07  |  801 b   |  35 lines

  1. struct IntuitionBase *IntuitionBase = NULL;
  2. struct GfxBase *GfxBase = NULL;
  3. struct Library *HameBase = NULL;
  4. struct AslBase *AslBase = NULL;
  5. struct Library *IFFBase = NULL;
  6.  
  7. struct Screen  *imageScreen = NULL;
  8. struct Window  *imageWindow = NULL;
  9. struct Window  *sw=NULL;
  10. struct Window  *credwin=NULL;
  11. struct MsgPort *messagePort = NULL;
  12. struct ViewPort *frontViewPort = NULL;
  13. struct HamePort *hamePort = NULL;
  14. struct Screen *gScreen = NULL;
  15. struct Window *gWindow = NULL;
  16.  
  17. char   *image=NULL;
  18.  
  19. ULONG signalmask, signals;
  20.  
  21. int width=318, height=198;
  22. int mode=256;
  23. BOOL isscale = 0;
  24.  
  25. char hdffile[81];
  26. char hdffilename[81];
  27. char hdfdirname[81];
  28. char palettedirname[81];
  29.  
  30. float min=0, max=0;
  31.  
  32. int HAME_r[256], HAME_g[256], HAME_b[256];
  33. int r_32[32], g_32[32], b_32[32];
  34. int r_16[16], g_16[16], b_16[16];
  35.