I am working on a smartwatch app written in C and I am trying to pass a function pointer as a parameter into my button handlers so it can be called from in there. So far I ve done the following but i get an error saying that the object I am calling is not a function.
void func(){
...
}
static void select_click_handler(ClickRecognizerRef recognizer, void *context){
context();
}
static void click_config_provider(void *context) {
window_single_click_subscribe(BUTTON_ID_SELECT, select_click_handler);
window_set_click_context(BUTTON_ID_SELECT, context);
}
int main(void){
...
action_bar = action_bar_layer_create();
action_bar_layer_set_click_config_provider(action_bar, click_config_provider);
action_bar_layer_set_context(action_bar, &func);
}
Documentation:
In
select_click_handler()
functioncontext
isvoid *
so you need to typecast it appropriately before calling it.Assuming
context
isfunc
you can do thisAlso in this line
action_bar_layer_set_context(action_bar, &func);
you don't need&
just passfunc
not&func
.