home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / online / source / cpp / graphics / Conics.sit.hqx / Conics / Include / Graphics.h < prev    next >
Text File  |  1996-11-08  |  312b  |  17 lines

  1. //Copyright 1996 Aidan Cully
  2. //All rights reserved
  3.  
  4. #ifndef __GRAPHICS_H
  5. #define __GRAPHICS_H
  6.  
  7. #include <Quickdraw.h>
  8.  
  9. inline puttextxy( int x, int y, unsigned char *string ) {
  10.     MoveTo( x, y );
  11.     DrawString( string );
  12. }
  13.  
  14. extern void putline(int,int,int,int,long);
  15. extern unsigned char *gcvt( float, int );
  16.  
  17. #endif