GrabBag/GrabBagApp/Version.h

24 lines
482 B
C
Raw Normal View History

2025-07-23 01:35:14 +08:00
#ifndef VERSION_H
#define VERSION_H
#define GRABBAG_VERSION_STRING "1.1.0"
#define GRABBAG_BUILD_STRING "1"
#define GRABBAG_FULL_VERSION_STRING "V1.1.0_1"
2025-07-23 01:35:14 +08:00
// 获取版本信息的便捷函数
inline const char* GetGrabBagVersion() {
return GRABBAG_VERSION_STRING;
}
inline const char* GetGrabBagBuild() {
return GRABBAG_BUILD_STRING;
}
inline const char* GetGrabBagFullVersion() {
return GRABBAG_FULL_VERSION_STRING;
}
#endif // VERSION_H