Out of curiosity, does it support function pointers?

```c
g_signal_connect(obj, "sig", G_CALLBACK(some_function), NULL);
GCallback cb = &some_function;
sigc::mem_fun<void>(*this, &TheClass::some_function);
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/1231#issuecomment-247190599

Reply via email to