home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / OWLRANGE.PAK / PRINT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  502 b   |  19 lines

  1. // print.hpp
  2. //............................................................................
  3. #ifndef PRINT_HPP
  4. #define PRINT_HPP
  5.  
  6. //............................................................................
  7. // function prototypes
  8.  
  9. void EmptyFile( void );
  10. void PrintMsg( WORD dest, LPCSTR format, ...);
  11.  
  12. // dest
  13. #define TO_FILE    0x0001
  14. #define TO_DBWIN    0x0002
  15. #define TO_MSGBOX    0x0004
  16.  
  17. //............................................................................
  18. #endif // PRINT_HPP
  19.