mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
22 lines
800 B
C
Executable File
22 lines
800 B
C
Executable File
#ifndef QVERSION_H
|
|
#define QVERSION_H
|
|
|
|
#define VER_FILEVERSION 1,0,0,0 //文件版本
|
|
#define VER_FILEVERSION_STR "1.0.0.0"
|
|
|
|
#define VER_PRODUCTVERSION 1,0,0,0
|
|
#define VER_PRODUCTVERSION_STR "1.0" //产品版本
|
|
|
|
#define VER_COMPANYNAME_STR "QQT"
|
|
#define VER_FILEDESCRIPTION_STR "K1160 Digest" //文件说明
|
|
#define VER_INTERNALNAME_STR "K1160"
|
|
#define VER_LEGALCOPYRIGHT_STR "Copyright 2007-2016 QQT Co., Ltd." //版权
|
|
#define VER_LEGALTRADEMARKS1_STR "All rights reserved"
|
|
#define VER_LEGALTRADEMARKS2_STR VER_LEGALTRADEMARKS1_STR
|
|
#define VER_ORIGINALFILENAME_STR "K1160" //原始文件名
|
|
#define VER_PRODUCTNAME_STR "K1160" //产品名称
|
|
|
|
#define VER_COMPANYDOMAIN_STR "www.QQT.cc"
|
|
|
|
#endif // QVERSION_H
|