Documentation for CGEventTapCallBack
here states:
CGEventRef event The incoming event. This event is owned by the caller, and you do not need to release it.
What happens if I wish to eat the event, and return NULL
? Should I CFRelease
it myself?
Similarly, if I wish to replace it with an event I have created myself, should I CFRelease
the incoming event and CFRetain
the newly created event?
Or am I constrained to modifying the contents of the received CGEvent
in-place? And is this is indeed the case, is there any API-call I can use hot-swap?
Copied from the documentation for
CGEventTapCallBack
(link in the question):The new event will be released along with the original event. Don't release the original event and don't release the new event.