First page Back Continue Last page Graphics
Language Linking
You can force where the compiler “looks” by one of the following:
extern “C” void function_name(int);
- use C protocol fo name look-up
extern void function_name(int);
- use C++ protocol for name look-up
extern “C++” void function_name(int);
- use C++ protocol for name look-up