home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d4xx / d430 / smartfields.lha / SmartFields / Functions / cursor_visible.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-01-11  |  415 b   |  19 lines

  1. /***************************************
  2. *  CURSOR VISIBLE v1.11
  3. *  © Copyright 1988 Timm Martin
  4. *  All Rights Reserved
  5. ****************************************/
  6.  
  7. #include <exec/io.h>
  8. #include <exec/types.h>
  9. #include <console/console.h>
  10. #include <console/functions.h>
  11.  
  12. UBYTE cvis__escdata[] = { CSI, 0x20, 0x70 };
  13.  
  14. void cursor_visible( wreq )
  15.   struct IOStdReq *wreq;
  16. {
  17.   con_write( wreq, &cvis__escdata[0], 3 );
  18. }
  19.