home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / developm / source / ncsat.cpt / Telnet2.5 final / tek / rg0.c next >
Encoding:
C/C++ Source or Header  |  1991-12-23  |  1.0 KB  |  104 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.   {
  22. #pragma unused(w)
  23.   }
  24.  
  25. RG0close(w)
  26.   {
  27. #pragma unused(w)
  28.   }
  29.  
  30. RG0point(w,x,y)
  31.   {
  32. #pragma unused(w, x, y)
  33.   }
  34.  
  35. RG0drawline(w,a,b,c,d)
  36.   {
  37. #pragma unused(w, a, b, c, d)
  38.   }
  39.  
  40. RG0pagedone(w)
  41.   {
  42. #pragma unused(w)
  43.   }
  44.  
  45. RG0dataline(w,data,count)
  46.   {
  47. #pragma unused(w, data, count)
  48.   }
  49.  
  50. RG0pencolor(w,color)
  51.   {
  52. #pragma unused(w, color)
  53.   }
  54.  
  55. RG0charmode(w,rotation,size)
  56.   {
  57. #pragma unused(w, rotation, size)
  58.   }
  59.  
  60. RG0showcur()
  61.   {
  62.   }
  63.  
  64. RG0lockcur()
  65.   {
  66.   }
  67.  
  68. RG0hidecur()
  69.   {
  70.   }
  71.  
  72. RG0bell(w)
  73.   {
  74. #pragma unused(w)
  75.   }
  76.  
  77.  
  78. char *RG0devname()
  79.   {
  80.     return(nullname);
  81.   }
  82.  
  83. RG0uncover(w)
  84.   {
  85. #pragma unused(w)
  86.   }
  87.  
  88. RG0init()
  89.   {
  90.   }
  91.  
  92. RG0info(w,a,b,c,d,v)
  93.   {
  94. #pragma unused(w, a, b, c, d, v)
  95.   }
  96.  
  97. RG0gmode()
  98.   {
  99.   }
  100.  
  101. RG0tmode()
  102.   {
  103.   }
  104.