Re: Cocoa dylib access by C program

2020-11-13 Thread Carl Hoefs via Cocoa-dev
Yes, that's nice, clean approach, and will do what I need. Thanks! -Carl > On Nov 13, 2020, at 11:42 AM, Martin Wierschin wrote: > > A nice way to do this is to have a bridge header file that only declares C > functions. The corresponding .m source code file will have C functions that > nati

Re: Cocoa dylib access by C program

2020-11-13 Thread Martin Wierschin via Cocoa-dev
A nice way to do this is to have a bridge header file that only declares C functions. The corresponding .m source code file will have C functions that natively call Objective-C methods. This same header can be included in .c files without any trouble, letting them have access to Obj-C code via t