1 Star 0 Fork 10

混吃等死/libicon

forked from gite-hub/libicon 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
_window.h 1019 Bytes
一键复制 编辑 原始数据 按行查看 历史
cao-hub 提交于 2019-07-24 13:13 . 添加项目文件。
#pragma once
#include <windows.h>
#include "_string.h"
////////////////////////////////////////////////////////////////////////// 弹框
#define ccc_msgbox(...) MessageBoxA(nullptr, toString(__VA_ARGS__).c_str(), __FUNCTION__, MB_OK);
#define ccc_box(_one_) MessageBoxA(nullptr, cpp::toString(_one_).c_str(), __FUNCTION__, MB_OK);
////////////////////////////////////////////////////////////////////////// CRTDBG
inline void ccc_crtdbg(const char *file, int line)
{
#if defined(_DEBUG)
#include <crtdbg.h>
_CrtDbgReport(_CRT_WARN, file, line, nullptr, "");
#endif
}
////////////////////////////////////////////////////////////////////////// 定位输出
#define ccc_log(...) do{\
ccc_crtdbg(__FILE__, __LINE__);\
std::string _str_ = "★★点击定位★★ ";\
_str_ += toString(__VA_ARGS__) + "\n";\
OutputDebugStringA(_str_.c_str());\
}while(0)
////////////////////////////////////////////////////////////////////////// asert
#define asert(_cond_, ...)\
if(!(_cond_))\
{\
ccc_msgbox(__VA_ARGS__);\
DebugBreak();\
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/HunChiDengSi/libicon.git
git@gitee.com:HunChiDengSi/libicon.git
HunChiDengSi
libicon
libicon
master

搜索帮助