[SDK] cicuif.h: Add CUIFMenu and CUIFMenuItem (#6400)

Supporting Language Bar...
JIRA issue: CORE-19363
- Half-implement CUIFMenu
  and CUIFMenuItem.
- Reduce lines.
This commit is contained in:
Katayama Hirofumi MZ 2024-01-23 20:33:43 +09:00 committed by GitHub
parent e4344ad152
commit 062890ac5f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 659 additions and 267 deletions

View file

@ -33,6 +33,12 @@ public:
T_ITEM* data() const { return (T_ITEM*)m_pb; }
size_t size() const { return m_cItems; }
bool empty() const { return !size(); }
void clear()
{
cicMemFree(m_pb);
m_pb = NULL;
m_cItems = m_cCapacity = 0;
}
T_ITEM& operator[](size_t iItem)
{

File diff suppressed because it is too large Load diff