ASSERT.CXX
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:
Windows编程
开发平台:
Visual C++
- //+---------------------------------------------------------------------------
- // Copyright 1996-1997 Microsoft Corporation.
- //
- // File: assert.cxx
- //
- // Contents: Debug assert function
- //
- //----------------------------------------------------------------------------
- #include <pch.cxx>
- #pragma hdrstop
- //+---------------------------------------------------------------------------
- //
- // Function: Win4Assert
- //
- // Synopsis: Display assertion information
- //
- //----------------------------------------------------------------------------
- void Win4AssertEx( char const * szFile,
- int iLine,
- char const * szMessage)
- {
- char acsString[200];
- sprintf( acsString, "%s, File: %s Line: %un", szMessage, szFile, iLine );
- OutputDebugStringA( acsString );
- DebugBreak();
- }