errorprint.cpp
上传用户:zjb_0001
上传日期:2007-01-11
资源大小:154k
文件大小:0k
源码类别:

Audio

开发平台:

Visual C++

  1. #include "stdafx.h"
  2. #include "errorprint.h"
  3. #ifdef _DEBUG
  4. #define new DEBUG_NEW
  5. #undef THIS_FILE
  6. static char THIS_FILE[] = __FILE__;
  7. #endif
  8. void ErrorMsg(LPCTSTR lpszFormat, ...)
  9. {
  10. ASSERT(AfxIsValidString(lpszFormat));
  11. va_list argList;
  12. va_start(argList, lpszFormat);
  13. CString str;
  14. str.FormatV(lpszFormat, argList);
  15. ::AfxMessageBox(str, MB_OK | MB_ICONEXCLAMATION);
  16. va_end(argList);
  17. }