24 lines
481 B
C
24 lines
481 B
C
#ifndef VERSION_H
|
|
#define VERSION_H
|
|
|
|
|
|
#define LAPWELD_VERSION_STRING "1.0.0"
|
|
#define LAPWELD_BUILD_STRING "1"
|
|
#define LAPWELD_FULL_VERSION_STRING "V1.0.0_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
|
|
|