Files
cAI/cKit/Base/c_Compiler_MSVC.h
2026-08-10 01:21:15 +08:00

17 lines
418 B
C

#ifndef INCLUDED_C_COMPILER_MSVC_H
#define INCLUDED_C_COMPILER_MSVC_H
#if _MSC_VER >= 1920
// Visual Studio 2019 或更新版本
#elif _MSC_VER >= 1910
// Visual Studio 2017
#elif _MSC_VER >= 1900
// Visual Studio 2015
#endif
#define C_STATIC_FORCE_INLINE static inline __forceinline
#define C_PACKED_STRUCT(X) __pragma(pack(push, 1)) struct X __pragma(pack(pop))
#endif /*INCLUDED_C_COMPILER_MSVC_H*/