home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 377a.lha / libraries / intuition / hires.h < prev    next >
C/C++ Source or Header  |  1980-02-04  |  2KB  |  41 lines

  1.  
  2. /* hires.h --  Declare and initialize a NewScreen structure */
  3. /* Copyright (c) 1990 Commodore-Amiga, Inc.
  4.  *
  5.  * This example is provided in electronic form by Commodore-Amiga, Inc. for
  6.  * use with the 1.3 revisions of the Addison-Wesley Amiga reference manuals. 
  7.  * The 1.3 Addison-Wesley Amiga Reference Manual series contains additional
  8.  * information on the correct usage of the techniques and operating system
  9.  * functions presented in this example.  The source and executable code of
  10.  * this example may only be distributed in free electronic form, via bulletin
  11.  * board or as part of a fully non-commercial and freely redistributable
  12.  * diskette.  Both the source and executable code (including comments) must
  13.  * be included, without modification, in any copy.  This example may not be
  14.  * published in printed form or distributed with any commercial product.
  15.  * However, the programming techniques and support routines set forth in
  16.  * this example may be used in the development of original executable
  17.  * software products for Commodore Amiga computers.
  18.  * All other rights reserved.
  19.  * This example is provided "as-is" and is subject to change; no warranties
  20.  * are made.  All use is at your own risk.  No liability or responsibility
  21.  * is assumed.
  22.  */
  23.  
  24. struct NewScreen fullHires =
  25.     {
  26.     0,                /* the LeftEdge must be zero */
  27.     0,                /* TopEdge */
  28.     640,              /* Width (high-resolution) */
  29.     STDSCREENHEIGHT,  /* Height (non-interlace)  */
  30.     2,                /* Depth (4 colors will be available) */
  31.     0, 1,             /* DetailPen and BlockPen specifications */
  32.     HIRES,            /* the high-resolution display mode */
  33.     CUSTOMSCREEN,     /* the screen type */
  34.     NULL,             /* no special font */
  35.     "Our Own Screen", /* the screen title */
  36.     NULL,             /* no special screen gadgets */
  37.     NULL              /* no CustomBitMap */
  38.     };
  39.  
  40. /* End of hires.h */
  41.