home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / CLIPPER / SYSWIN / SETCURS.CH < prev    next >
Text File  |  1992-09-07  |  451b  |  18 lines

  1. /***
  2. *    setcurs.ch
  3. *    Standard definitions for SETCURSOR().
  4. *
  5. *    Copyright (c) 1990-1992, Computer Associates International, Inc.
  6. *  All rights reserved.
  7. */
  8.  
  9. // Cursor types
  10.  
  11. #define SC_NONE            0        // No cursor
  12. #define SC_NORMAL        1        // Normal cursor (underline)
  13. #define SC_INSERT        2        // Insert cursor (lower half block)
  14. #define SC_SPECIAL1        3        // Special cursor (full block)
  15. #define SC_SPECIAL2        4        // Special cursor (upper half block)
  16.  
  17. 
  18.