MtVerify.h 头文件内容,用的时候添加到工程就行了

/**  
* MtVerify.h  
*  
* Error handling for applications in  
* "Multitheading Applications in Win32"  
*  
* The function PrintError() is marked as __inline so that it can be  
* included from one or more C or C++ files without multiple definition  
* errors. For the examples in this book, this works fine.  
* To use the PrintError() in an application, it should be taken out,  
* placed in its own source file, and the "__inline" declaration removed  
* so the function will be globally available.  
*/  
#pragma comment( lib, "USER32" )   
#include <stdlib.h>   
#include <crtdbg.h>   
#define MTASSERT(a) _ASSERTE(a)   
// 宏定义 __FILE__ 与__LINE__都是预处理符号提供错误信息的描述   
// 如果a返回FALSE就执行PrintError函数   
#define MTVERIFY(a) if (!(a)) PrintError(#a,__FILE__,__LINE__,GetLastError())   
__inline void PrintError(LPSTR linedesc, LPSTR filename, int lineno, DWORD errnum)   
{   
	LPSTR lpBuffer;   
	char errbuf[256];   
#ifdef _WINDOWS   
	char modulename[MAX_PATH];   
#else // _WINDOWS   
	DWORD numread;   
#endif // _WINDOWS   
	// 把从GetLastError()返回的错误码转化为错误信息    
	FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER   
		| FORMAT_MESSAGE_FROM_SYSTEM,   
		NULL,   
		errnum,   
		LANG_NEUTRAL,   
		(LPTSTR)&lpBuffer,   
		0,   
		NULL );   
	wsprintfA(errbuf, "/nThe following call failed at line %d in %s:/n/n"  
		" %s/n/nReason: %s/n", lineno, filename, linedesc, lpBuffer);   
	// 如果是console程序就输出信息到控制台上
#ifndef _WINDOWS   
	WriteFile(GetStdHandle(STD_ERROR_HANDLE), errbuf, strlen(errbuf), &numread, FALSE );   
	// 等待3秒钟是为了使用者看到出错信息   
	Sleep(3000);   
	// 如果是窗口程序就一弹出对话框的形式输出错误信息
#else   
	// 当前exe文件的全路径   
	GetModuleFileName(NULL, modulename, MAX_PATH);   
	// 置弹出窗口在最上层以免被忽略   
	MessageBox(NULL, errbuf, modulename, MB_ICONWARNING|MB_OK|MB_TASKMODAL|MB_SETFOREGROUND);   
#endif   
	// 把结束代码EXIT_FAILURE 交给操作系统
	exit(EXIT_FAILURE);   
}  


 

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值