home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / uccs / root.14 / udk / usr / add-on / include / tam.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-08-19  |  1.0 KB  |  34 lines

  1. /*
  2.  * Copyright (c) 1998 The Santa Cruz Operation, Inc.. All Rights Reserved. 
  3.  *                                                                         
  4.  *        THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF THE               
  5.  *                   SANTA CRUZ OPERATION INC.                             
  6.  *                                                                         
  7.  *   The copyright notice above does not evidence any actual or intended   
  8.  *   publication of such source code.                                      
  9.  */
  10.  
  11. #ident    "@(#)libetitam:tam.h    1.1"
  12. /* user-includeable tam definition file        */
  13. #ifndef tam_h
  14.  
  15. #define tam_h
  16.  
  17. #include    "sys/window.h"
  18. #include    "kcodes.h"
  19.  
  20. #include    "chartam.h"
  21.  
  22. #define NWINDOW 20    /* max # of windows in a single process    */
  23.             /* must be >= NOFILE in <sys/param.h>    */
  24.  
  25. struct wstat { short begy,begx,height,width; unsigned short uflags; };
  26. typedef struct wstat WSTAT;
  27.  
  28. extern short wncur;        /* current window */
  29. extern int LINES, COLS;
  30.  
  31. #define A_STANDOUT A_REVERSE
  32.  
  33. #endif
  34.