home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_144 / 1.ddi / RTLINSRC.ZIP / _WIN.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-10  |  1.1 KB  |  33 lines

  1. /*------------------------------------------------------------------------
  2.  * filename - _win.h
  3.  *
  4.  *      prototypes for Windows error message functions
  5.  *-----------------------------------------------------------------------*/
  6.  
  7. /*[]------------------------------------------------------------[]*/
  8. /*|                                                              |*/
  9. /*|     C/C++ Run Time Library - Version 4.0                     |*/
  10. /*|                                                              |*/
  11. /*|                                                              |*/
  12. /*|     Copyright (c) 1991 by Borland International              |*/
  13. /*|     All Rights Reserved.                                     |*/
  14. /*|                                                              |*/
  15. /*[]------------------------------------------------------------[]*/
  16.  
  17. #if !defined( ___WIN_H )
  18. #define ___WIN_H
  19.  
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23.  
  24. void _errorBox( char * );
  25. void _errorExitBox( char *, int );
  26.  
  27. #ifdef  __cplusplus
  28. }
  29. #endif
  30.  
  31. #endif  // ___WIN_H
  32.  
  33.