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

  1. /***************************************
  2. *  CURSOR PLACE 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. void cursor_place( wreq, x, y )
  13.   struct IOStdReq *wreq;
  14.   int    x, y;
  15. {
  16.   con_left_offset( wreq, x );
  17.   con_top_offset( wreq, y );
  18.   cursor_pos( wreq, 1, 1 );
  19. }
  20.