home *** CD-ROM | disk | FTP | other *** search
/ GRIPS 2: Government Rast…rocessing Software & Data / GRIPS_2.cdr / dos / ncsa_tel / contribu / byu_tel2.hqx / tek / rg0.c < prev    next >
Text File  |  1989-05-17  |  700b  |  42 lines

  1. /*
  2.  
  3. rgnull.c by Aaron Contorer for NCSA
  4. Copyright 1987, board of trustees, University of Illinois
  5.  
  6. routines for "null" device -- calling these routines
  7.     has no effect, but they are compatible with all RG calls.
  8.  
  9. */
  10.  
  11. #include <stdio.h>
  12.  
  13. static char *nullname = "Null device -- do not display output";
  14.  
  15. int RG0newwin()
  16. {
  17.     return(0);
  18. }
  19.  
  20. RG0clrscr(w){}
  21. RG0close(w) {}
  22. RG0point(w,x,y) {} 
  23. RG0drawline(w,a,b,c,d) {}
  24. RG0pagedone(w) {}
  25. RG0dataline(w,data,count) {}
  26. RG0pencolor(w,color){}
  27. RG0charmode(w,rotation,size) {}
  28. RG0showcur() {}
  29. RG0lockcur() {}
  30. RG0hidecur() {}
  31. RG0bell(w) {}
  32.  
  33. char *RG0devname() {
  34.     return(nullname);
  35. }
  36.  
  37. RG0uncover(w) {}
  38. RG0init() {}
  39. RG0info(w,a,b,c,d,v) {}
  40. RG0gmode() {}
  41. RG0tmode() {}
  42.