1
0

first commit

This commit is contained in:
2024-04-25 10:38:13 +08:00
commit b6cffd8a97
20 changed files with 1181 additions and 0 deletions

11
src/WinImportSuffix.hpp Normal file
View File

@@ -0,0 +1,11 @@
#pragma once
#include "YYCCInternal.hpp"
#if YYCC_OS == YYCC_OS_WINDOWS
// Define 2 macros to disallow Windows generate MIN and MAX macros
// which cause std::min and std::max can not function as normal.
#define WIN32_LEAN_AND_MEAN
#define NOMINMAX
#endif