errorhandler.h
来自「这是整套横扫千军3D版游戏的源码」· C头文件 代码 · 共 22 行
H
22 行
/**
* @file errorhandler.h
* @brief error messages
* @author Christopher Han <xiphux@gmail.com>
* @author Tobi Vollebregt <tobivollebregt@gmail.com>
*
* Error handling based on platform
* Copyright (C) 2005. Licensed under the terms of the
* GNU GPL, v2 or later.
*/
#ifndef ERRORHANDLER_H
#define ERRORHANDLER_H
#define MBF_OK 1
#define MBF_INFO 2
#define MBF_EXCL 4
#define handleerror(o, m, c, f) ErrorMessageBox(m, c, f)
void ErrorMessageBox(const char *msg, const char *caption, unsigned int flags);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?