home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 373.lha / route_v1.0 / src / util.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-04-25  |  266 b   |  18 lines

  1. extern struct RastPort *rastp;
  2.  
  3. /*
  4.  * write a dot on the screen
  5.  */
  6. void Dot( color, pixrow, pixcol )
  7. int color, pixrow, pixcol;
  8. {
  9.     SetAPen(rastp,(long)color);
  10.     WritePixel(rastp,(long)pixcol,(long)pixrow);
  11. }
  12.  
  13. ClearPCB()
  14. {
  15.     Move(rastp,0L,15L);
  16.     ClearScreen(rastp);
  17. }
  18.