add MwGetName
This commit is contained in:
parent
e397f40485
commit
2782277d06
2 changed files with 11 additions and 0 deletions
|
|
@ -725,6 +725,10 @@ MwClass MwGetClass(MwWidget handle) {
|
|||
return handle->widget_class;
|
||||
}
|
||||
|
||||
const char* MwGetName(MwWidget handle) {
|
||||
return handle->name;
|
||||
}
|
||||
|
||||
MwWidget* MwGetChildren(MwWidget handle) {
|
||||
MwWidget* c = malloc(sizeof(*c) * (arrlen(handle->children) + 1));
|
||||
int i;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue