home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / snip9707.zip / DVIDPORT.C < prev    next >
C/C++ Source or Header  |  1997-07-05  |  379b  |  20 lines

  1. /* +++Date last modified: 05-Jul-1997 */
  2.  
  3. /*
  4. **  DVIDPORT.C - Direct video portability functions
  5. */
  6.  
  7. #ifdef __ZTC__                            /* Only used with SC/ZTC      */
  8.  
  9. #include <disp.h>
  10. #include "scrnmacs.h"
  11.  
  12. void gotoxy(int col, int row)
  13. {
  14.       if (disp_inited)
  15.             disp_move(row, col);
  16.       else  GotoXY(col, row);
  17. }
  18.  
  19. #endif /* __ZTC__ */
  20.