| 1048 |
1048 |
| 1049 void ui_sourcelist_args_set_getvalue_func(UiSourceListArgs *args, ui_sublist_getvalue_func getvalue) { |
1049 void ui_sourcelist_args_set_getvalue_func(UiSourceListArgs *args, ui_sublist_getvalue_func getvalue) { |
| 1050 args->getvalue = getvalue; |
1050 args->getvalue = getvalue; |
| 1051 } |
1051 } |
| 1052 |
1052 |
| |
1053 void ui_sourcelist_args_set_getvalue_userdata(UiSourceListArgs *args, void *userdata) { |
| |
1054 args->getvaluedata = userdata; |
| |
1055 } |
| 1053 |
1056 |
| 1054 void ui_sourcelist_args_set_onactivate(UiSourceListArgs *args, ui_callback callback) { |
1057 void ui_sourcelist_args_set_onactivate(UiSourceListArgs *args, ui_callback callback) { |
| 1055 args->onactivate = callback; |
1058 args->onactivate = callback; |
| 1056 } |
1059 } |
| 1057 |
1060 |