支持symbol资源编译

Signed-off-by: fangyunzhong <fangyunzhong2@huawei.com>
This commit is contained in:
fangyunzhong
2023-10-26 11:28:42 +00:00
parent 763c994258
commit a1aa816b37
6 changed files with 55 additions and 5 deletions
+5
View File
@@ -423,6 +423,11 @@ uint32_t ResourceUtil::GetNormalSize(const vector<KeyParam> &keyParams, uint32_t
return g_normalIconMap.find(dpi + "-" + device)->second[index];
}
bool ResourceUtil::isUnicodeInPlane15or16(int unicode)
{
return (unicode >= 0xF0000 && unicode <= 0xFFFFF) || (unicode >= 0x100000 && unicode <= 0x10FFFF);
}
}
}
}