YYCCommonplace/src/YYCCInternal.hpp

12 lines
228 B
C++
Raw Normal View History

2024-04-25 10:38:13 +08:00
#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