currently i'm playing around a bit with global hotkeys in carbon and registered a hotkey. When the hotkey is pressed, this function is called:
OSStatus myHotKeyHandler(EventHandlerCallRef nextHandler, EventRef anEvent, void *userData) {
...
}
This function is in my appdelegate. how do i now call a obj-c function from my delegate in that function, like
[self aFunction];
? i cant add a void* (as a pointer to my class instance) to the c function because i am not the one calling it...
i tried to convert the function into a class function and then call it with [AppDelegate aFunction], which works but then i cant use my instance objects!
the idea behind all this is that when the hotkey is pressed, all currently selected files in finder get processed. getting the selected files is not a problem, but then they are stored in an array of my class instance