home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 March / VPR9703A.ISO / VPR_DATA / DOGA / SOURCES / REND.LZH / REND / CRTNONE.C < prev    next >
C/C++ Source or Header  |  1992-10-23  |  358b  |  30 lines

  1. #include <stdio.h>
  2.  
  3. #include "reader.h"
  4.  
  5. char    *program = "Do-GA C.G.A System Rendering Program" ;
  6.  
  7. void    crtinit( line )
  8. int        line ;
  9. {
  10. }
  11.  
  12. /*    CRTのクリア    */
  13. void    crtclr()
  14. {
  15. }
  16.  
  17. /*    CRT出力    */
  18. void    crtout( framebuf, xlen, y )
  19. short    *framebuf ;
  20. int        xlen ;
  21. int        y ;
  22. {
  23. }
  24.  
  25. void    crtline( x1, y1, x2, y2 )
  26. int        x1, y1, x2, y2 ;
  27. {
  28. }
  29.  
  30.