home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / OpenStepConversion / IntermediateFrameworks3 / AppKit.framework / Headers / screens.h < prev    next >
Text File  |  1994-09-29  |  832b  |  33 lines

  1. /*
  2.     screens.h
  3.     Application Kit, Release 2.0
  4.     Copyright (c) 1988, 1989, 1990, NeXT, Inc.  All rights reserved. 
  5. */
  6.  
  7.  
  8. /*
  9.  * Information about the various screens hooked up to the machine
  10.  * on which the window server is running. This information can be
  11.  * accessed with the getScreens:count: (and various other methods)
  12.  * in Application, Window, and View.
  13.  *
  14.  * You may access the fields of this structure when you get them from
  15.  * these methods.
  16.  */
  17.  
  18. #import "NSGraphics.h"
  19.  
  20. typedef struct _NXScreen {
  21.  
  22.     int screenNumber;        /* Screen number (may be used as */
  23.                 /* argument to framebuffer op). */
  24.     NSRect screenBounds;    /* Bounds of the screen. */
  25.  
  26.     short _reservedShort[6];    /* Don't use these. */
  27.  
  28.     NSWindowDepth depth;    /* Depth of the frame buffer */
  29.  
  30.     int _reserved[3];        /* Don't use these either. */
  31.  
  32. } NXScreen;
  33.