| 157 UiObject *obj; |
157 UiObject *obj; |
| 158 UiVar *var; |
158 UiVar *var; |
| 159 UiObserver **observers; |
159 UiObserver **observers; |
| 160 ui_callback callback; |
160 ui_callback callback; |
| 161 void *userdata; |
161 void *userdata; |
| |
162 int customint1; |
| |
163 int customint2; |
| 162 } UiVarEventData; |
164 } UiVarEventData; |
| 163 |
165 |
| 164 typedef enum UiOrientation UiOrientation; |
166 typedef enum UiOrientation UiOrientation; |
| 165 enum UiOrientation { UI_HORIZONTAL = 0, UI_VERTICAL }; |
167 enum UiOrientation { UI_HORIZONTAL = 0, UI_VERTICAL }; |
| 166 |
168 |