home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c070 / 4.ddi / TOOLS.4 / TCTSRC1.EXE / EDWRRECT.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-03-31  |  1.0 KB  |  39 lines

  1. /**
  2. *
  3. * Name        EDWRRECT -- Write a rectangular image to the screen.
  4. *
  5. * Synopsis    edwrrect(pdata, u_row, u_col, l_row, l_col, buffer, gap,
  6. *             fore, back, option);
  7. *
  8. *        void *pdata     Unused; see below.
  9. *        The remaining parameters are identical to those passed
  10. *        to VIWRRECT.
  11. *
  12. * Description    EDWRRECT is a stub which simply discards the pdata
  13. *        parameter and calls VIWRRECT with the remaining
  14. *        parameters. Its sole purpose is to provide a routine
  15. *        which has the same calling sequence as WNWRRECT, but
  16. *        which uses VIWRRECT.
  17. *
  18. * Returns    Nothing.
  19. *
  20. * Version    6.00 (C)Copyright Blaise Computing Inc.  1989
  21. *
  22. **/
  23. #include <bvideo.h>
  24. #include <bedit.h>
  25.  
  26. void edwrrect(pdata, u_row, u_col, l_row, l_col, buffer, fore, back,
  27.           option)
  28. void       *pdata;
  29. int        u_row, u_col, l_row, l_col;
  30. const char *buffer;
  31. int        fore, back, option;
  32. {
  33.         /* Supress unused parameter compiler warnings.        */
  34.     ((char *) pdata)++;
  35.  
  36.     viwrrect(u_row, u_col, l_row, l_col, buffer, fore, back, option);
  37.  
  38. }
  39.