home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / crt / src / stdexcpt.h < prev    next >
C/C++ Source or Header  |  1998-06-17  |  1KB  |  41 lines

  1. /***
  2. *stdexcpt.h - User include file for standard exception classes
  3. *
  4. *       Copyright (c) 1994-1997, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. *       This file presents an interface to the standard exception classes,
  8. *       as specified by the ANSI X3J16/ISO SC22/WG21 Working Paper for
  9. *       Draft C++, May 1994.
  10. *
  11. *       [Public]
  12. *
  13. ****/
  14.  
  15. #if _MSC_VER > 1000
  16. #pragma once
  17. #endif  /* _MSC_VER > 1000 */
  18.  
  19. #ifndef _INC_STDEXCPT
  20. #define _INC_STDEXCPT
  21.  
  22. #if !defined (_WIN32) && !defined (_MAC)
  23. #error ERROR: Only Mac or Win32 targets supported!
  24. #endif  /* !defined (_WIN32) && !defined (_MAC) */
  25.  
  26. #ifndef _CRTBLD
  27. /* This version of the header files is NOT for user programs.
  28.  * It is intended for use when building the C runtimes ONLY.
  29.  * The version intended for public use will not have this message.
  30.  */
  31. #error ERROR: Use of C runtime library internal header file.
  32. #endif  /* _CRTBLD */
  33.  
  34. #ifdef __cplusplus
  35.  
  36. #include <exception>
  37.  
  38. #endif  /* __cplusplus */
  39. #endif  /* _INC_STDEXCPT */
  40.  
  41.