24 lines
481 B
C
Raw Normal View History

2025-09-14 14:51:38 +08:00
#ifndef VERSION_H
#define VERSION_H
#define LAPWELD_VERSION_STRING "1.1.3"
#define LAPWELD_BUILD_STRING "1"
#define LAPWELD_FULL_VERSION_STRING "V1.1.3_1"
// 获取版本信息的便捷函数
inline const char* GetLapWeldVersion() {
return LAPWELD_VERSION_STRING;
}
inline const char* GetLapWeldBuild() {
return LAPWELD_BUILD_STRING;
}
inline const char* GetLapWeldFullVersion() {
return LAPWELD_FULL_VERSION_STRING;
}
#endif // VERSION_H