// 软件信息
typedef struct D_SoftWareInfo
{
int versionNumber; // 当前版本号
int serverVersionNumber; // 服务器版本号
BOOL needsUpdate; // 是否需要更新
BOOL forceUpdate; // 是否强制更新
int serverStatus; // 服务器设定的软件状态
BOOL passwordAttemptLimit; // 密码输错限制
BOOL passwordChangeLimit; // 修改密码次数限制
int maxPublicFileUploads; // 公用文件上传最大数
int publicFileUploadInterval; // 公用文件上传间隔
std::string updateLink; // 更新连接
std::string updateContent; // 更新内容
std::string announcement; // 软件公告
}D_Swi, * D_pSwi;