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/YYCCInternal.hpp Normal file
View File

@ -0,0 +1,11 @@
#pragma once
// Define operating system macros
#define YYCC_OS_WINDOWS 2
#define YYCC_OS_LINUX 3
// Check current operating system.
#if defined(_WIN32)
#define YYCC_OS YYCC_OS_WINDOWS
#else
#define YYCC_OS YYCC_OS_LINUX
#endif