Is it possible to include a C header file for a dylib into an Objective-C project when the functions for the dylib include references and default parameters. For example
extern "C" {
unit32_t GetThisReference(uint32_t & theRef);
unit32_t ThisFunctionHasDefaults(uint32_t aparm, uint32_t one = 1, uint32_t two = 2);
};
Thanks!
extern "C"and default parameters and references make your example look like C++, not C.