version.h
来自「GPS坐标转换软件与源程序 支持世界上大多数坐标框架下」· C头文件 代码 · 共 41 行
H
41 行
#ifndef __VERSION_H__
#define __VERSION_H__
#if _MSC_VER > 1000
#pragma once
#endif
#ifndef _T
#define _T(x) x
#endif
#define _chSTR(x) _T(#x)
#define chSTR(x) _chSTR(x)
// *) Specify the version of coordtran only here with the following defines.
// *) When changing any of those version nr. defines you also have to rebuild the language DLLs.
//
// General format:
// <major>.<minor>.<update>.<build>
//
// Fields:
// <major> major number (e.g. 0)
// <minor> minor number (e.g. 30)
// <update> update number (e.g. 0='a' 1='b' 2='c' 3='d' 4='e' 5='f' ...)
// <build> build number; currently not used
//
// Currently used:
// <major>.<minor>.<update> is used for the displayed version (GUI) and the version check number
// <major>.<minor> is used for the protocol(!) version
//
#define VERSION_MJR 0
#define VERSION_MIN 0
#define VERSION_UPDATE 0
#define VERSION_BUILD 2
#define VC_VERSION_BUILD 80313//Added by thilon on 2006.01.10
// NOTE: This version string is also used by the language DLLs!
#define SZ_VERSION_NAME chSTR(VERSION_MJR) _T(".") chSTR(VERSION_MIN) _T(".") chSTR(VERSION_UPDATE) _T(".") chSTR(VC_VERSION_BUILD)
#endif /* !__VERSION_H__ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?