ASSERT.CXX
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. //+---------------------------------------------------------------------------
  2. //  Copyright 1996-1997 Microsoft Corporation.
  3. //
  4. //  File:       assert.cxx
  5. //
  6. //  Contents:   Debug assert function
  7. //
  8. //----------------------------------------------------------------------------
  9. #include <pch.cxx>
  10. #pragma hdrstop
  11. //+---------------------------------------------------------------------------
  12. //
  13. //  Function:   Win4Assert
  14. //
  15. //  Synopsis:   Display assertion information
  16. //
  17. //----------------------------------------------------------------------------
  18. void Win4AssertEx( char const * szFile,
  19.                    int iLine,
  20.                    char const * szMessage)
  21. {
  22.      char acsString[200];
  23.      sprintf( acsString, "%s, File: %s Line: %un", szMessage, szFile, iLine );
  24.      OutputDebugStringA( acsString );
  25.      DebugBreak();
  26. }