1、删除部分三方库

2、整合ylib为一个lib库
This commit is contained in:
xx
2024-05-26 12:51:32 +08:00
parent 4391d84402
commit ef63cfd6aa
9264 changed files with 24373 additions and 1648659 deletions

14
include/util/debug.h Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
#include <string>
namespace ylib
{
namespace debug
{
// 检测异常产生DUMP文件
void detect_exception();
#ifdef _WIN32
// 打印VS控制台
void vs_console_println(const std::string& value);
#endif
}
}