Is there any way to prevent ecc from mangling names of C functions?
For example, in CocoaDispatch.ec:
Code: Select all
bool CocoaDispatch_OnCreate(EcereWindowRef ref);
Thanks!
Code: Select all
bool CocoaDispatch_OnCreate(EcereWindowRef ref);
Code: Select all
default:
void MyUnmangledStuff()
{
}
private: // go back in eC mode
Code: Select all
default void MyUnmangledFunction()
{
}