errorprint.cpp
资源名称:fister.zip [点击查看]
上传用户:zjb_0001
上传日期:2007-01-11
资源大小:154k
文件大小:0k
源码类别:
Audio
开发平台:
Visual C++
- #include "stdafx.h"
- #include "errorprint.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- void ErrorMsg(LPCTSTR lpszFormat, ...)
- {
- ASSERT(AfxIsValidString(lpszFormat));
- va_list argList;
- va_start(argList, lpszFormat);
- CString str;
- str.FormatV(lpszFormat, argList);
- ::AfxMessageBox(str, MB_OK | MB_ICONEXCLAMATION);
- va_end(argList);
- }