conf.h
来自「非常好用的可移植的多平台C/C++源代码编辑器」· C头文件 代码 · 共 39 行
H
39 行
#ifndef CONF_H
#define CONF_H
#include <wx/string.h>
#include <wx/dynarray.h>
#include "cbiniparser.h"
struct UpdateRec
{
wxString entry;
wxString title;
wxString name;
wxString desc;
wxString remote_server;
wxString remote_file;
wxString local_file;
wxArrayString groups;
wxString install;
wxString version;
wxString installed_version;
long int bytes;
float kilobytes;
float megabytes;
wxString size;
wxString date;
bool installable;
bool downloaded;
bool installed;
};
extern wxString g_MasterPath;
UpdateRec* ReadConf(const IniParser& ini, int* recCount, const wxString& currentServer, const wxString& appPath);
UpdateRec* FindRecByTitle(const wxString& title, UpdateRec* list, int count);
// utility
wxString GetSizeString(int bytes);
#endif // CONF_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?