home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / os2 / hpgl312.zip / NO_PREV.C < prev    next >
C/C++ Source or Header  |  1993-04-18  |  359b  |  17 lines

  1. /** no_prev.c
  2.  **
  3.  ** This dummy file is used on systems without any previewer.
  4.  ** Its main purpose is to simplify the definition of a generic makefile
  5.  ** which must work even if no real file $(PREVIEWER).c exists.
  6.  **
  7.  ** 93/04/16  HWW  V 1.00
  8.  **/
  9.  
  10. #include <stdio.h>
  11.  
  12. void    PicBuf_to_Dummy()
  13. {
  14.   fprintf(stderr,"Sorry - preview not supported here\n");
  15. }
  16.  
  17.