home *** CD-ROM | disk | FTP | other *** search
/ DTP Toolbox / DTPToolbox.iso / utilities / archiveutils / wmf.lha / src / amiga.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-22  |  463 b   |  20 lines

  1. #ifndef WMF_AMIGA_INC
  2. #define WMF_AMIGA_INC 1
  3.  
  4. /* Fixed Amiga window dimensions, for now. */
  5. #define WINDOWX 400
  6. #define WINDOWY 400
  7.  
  8. /* Fixed Amiga Screen mode info. */
  9. #define SCREENX        WINDOWX
  10. #define SCREENY        WINDOWY
  11. #define SCREEN_DEPTH   4
  12. #define NUM_COLORS     (1<<SCREEN_DEPTH)
  13. #define BITPLANE_SIZE  ((SCREENX*SCREENY)/8 + ((SCREENX*SCREENY)%8))
  14.  
  15. /* Default to non-interlaced screen - double tall pixels. */
  16. #define INTERLACED     1
  17.  
  18.  
  19. #endif
  20.