home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / cbm / nduk-v39.lha / V39 / include / prefs / overscan.h < prev    next >
C/C++ Source or Header  |  1992-09-24  |  910b  |  49 lines

  1. #ifndef PREFS_OVERSCAN_H
  2. #define PREFS_OVERSCAN_H
  3. /*
  4. **    $VER: overscan.h 38.2 (26.06.91)
  5. **    Includes Release 39.108
  6. **
  7. **    File format for overscan preferences
  8. **
  9. **    (C) Copyright 1991-1992 Commodore-Amiga, Inc.
  10. **    All Rights Reserved
  11. */
  12.  
  13. /*****************************************************************************/
  14.  
  15.  
  16. #ifndef EXEC_TYPES_H
  17. #include <exec/types.h>
  18. #endif
  19.  
  20. #ifndef LIBRARIES_IFFPARSE_H
  21. #include <libraries/iffparse.h>
  22. #endif
  23.  
  24. #ifndef GRAPHICS_GFX_H
  25. #include <graphics/gfx.h>
  26. #endif
  27.  
  28.  
  29. /*****************************************************************************/
  30.  
  31.  
  32. #define ID_OSCN MAKE_ID('O','S','C','N')
  33.  
  34.  
  35. struct OverscanPrefs
  36. {
  37.     ULONG         os_Reserved[4];
  38.     ULONG         os_DisplayID;
  39.     Point         os_ViewPos;
  40.     Point         os_Text;
  41.     struct Rectangle os_Standard;
  42. };
  43.  
  44.  
  45. /*****************************************************************************/
  46.  
  47.  
  48. #endif /* PREFS_OVERSCAN_H */
  49.