#ifndef VERSION_H #define VERSION_H #define TUNNELCHANNEL_VERSION_STRING "1.0.0" #define TUNNELCHANNEL_BUILD_STRING "3" #define TUNNELCHANNEL_FULL_VERSION_STRING "V" TUNNELCHANNEL_VERSION_STRING "_" TUNNELCHANNEL_BUILD_STRING // 获取版本信息的便捷函数 inline const char* GetTunnelChannelVersion() { return TUNNELCHANNEL_VERSION_STRING; } inline const char* GetTunnelChannelBuild() { return TUNNELCHANNEL_BUILD_STRING; } inline const char* GetTunnelChannelFullVersion() { return TUNNELCHANNEL_FULL_VERSION_STRING; } #endif // VERSION_H