home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 April: Mac OS SDK / Dev.CD Apr 00 SDK1.toast / Development Kits / Mac OS / Apple Guide / Engineering / Context Check Modules / Standard CC Modules / Window Context / Window.h < prev    next >
Encoding:
Text File  |  1993-11-29  |  502 b   |  29 lines  |  [TEXT/MPS ]

  1. //    Copyright:    © 1993 Apple Computer, Inc. All rights reserved.
  2. //    Author:        Scott Searle
  3. //                Victor J. Hnyp (extensions)
  4. //    Date:        15-Nov-92
  5.  
  6. #ifndef __WINDOW__
  7. #define __WINDOW__
  8.  
  9. #ifndef __UTILITY__
  10. #include "Utility.h"
  11. #endif
  12.  
  13. typedef    long    WindowLayerSelector;
  14.  
  15. typedef struct
  16. {
  17.     StringSpec                wName;
  18. } WindowSpec, *WindowSpecPtr;
  19.  
  20. //    This defines the Window Context
  21.  
  22. typedef struct
  23. {
  24.     long        selector;        // Function Selector
  25.     long        notUsed;
  26.     WindowSpec    wSpec;
  27. } WindowState, *WindowStatePtr;
  28.  
  29. #endif