Really dumb question here: I understand pretty well at this point how to set-up and call objective-C class methods or instance methods via objc_util, but how do we call straight functions defined somewhere in the various objective-c libraries? Things like:
CGRectMake()
or
UIEdgeInsetsMake()
Oddly, I can't find anything in the way of examples of people doing this. Do I have to create the call definition with the descriptor and encoding? Or is there a straightforward way to just call defined functions via ctypes?