mirror of
https://github.com/reactos/reactos.git
synced 2024-11-23 11:33:31 +08:00
[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:
parent
e4344ad152
commit
062890ac5f
@ -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
Loading…
Reference in New Issue
Block a user