转载请注明出处:http://blog.csdn.net/drecik__/article/details/8061221
// 编写回调函数格式
BOOL CALLBACK OnClose( DWORD dwCtryType )
{
// 关闭事件,还有其他事件
if ( dwCtryType == CTRL_CLOSE_EVENT )
{
// 写关闭时候的代码
}
return TRUE;
}
编写完回调函数之后在主函数进行添加
int main()
{
// 第二个参数为TRUE则添加,否则删除
SetConsoleCtrlHandler( OnClose, TRUE );
// 写其他代码;
return 0;
}