mirror of
https://github.com/RubyMetric/chsrc.git
synced 2025-06-22 21:51:29 +08:00
Clearer feature displaying
This commit is contained in:
@ -123,6 +123,11 @@ typedef struct SourceInfo_t {
|
||||
|
||||
#define def_sources_n(t) const size_t t##_sources_n = xy_arylen(t##_sources)
|
||||
|
||||
enum StatusCan {
|
||||
CanNotFully,
|
||||
CanFully,
|
||||
CanSemi
|
||||
};
|
||||
|
||||
/* Target Feature Info */
|
||||
typedef struct FeatInfo_t {
|
||||
@ -130,9 +135,12 @@ typedef struct FeatInfo_t {
|
||||
bool can_reset; // 有的reset不是暂时没有实现,而是现在的实现根本就无法重置
|
||||
|
||||
bool can_english;
|
||||
char *locally;
|
||||
|
||||
bool can_user_define; // 用户自定义换源URL
|
||||
|
||||
enum StatusCan stcan_locally;
|
||||
char *locally;
|
||||
|
||||
char *note;
|
||||
} FeatInfo;
|
||||
|
||||
|
Reference in New Issue
Block a user