| View previous topic :: View next topic |
| Author |
Message |
Andy Guest
|
Posted: Thu Jan 27, 2005 2:08 pm Post subject: What is an implicit extern "C" declaration? |
|
|
Hi,
What is implicit extern "C" declaration in C++?
Can anybody give me an example?
Thanks a lot!
Andy
|
|
| Back to top |
|
 |
Attila Feher Guest
|
Posted: Thu Jan 27, 2005 2:45 pm Post subject: Re: What is an implicit extern "C" declaration? |
|
|
Andy wrote:
| Quote: | Hi,
What is implicit extern "C" declaration in C++?
Can anybody give me an example?
|
Where did you get that question?
--
Attila aka WW
|
|
| Back to top |
|
 |
Matthew Guest
|
Posted: Fri Jan 28, 2005 4:21 pm Post subject: Re: What is an implicit extern "C" declaration? |
|
|
| Quote: | What is implicit extern "C" declaration in C++?
Can anybody give me an example?
|
It's a linkage directive. It tells the compiler that a function has
been written in a different programming language (i.e. C) and that
different requirements apply (e.g the function's name will not be
encoded like a regular C++ function). There's a good example here that
applies to writing dlls. For more see Lippman.
http://www.functionx.com/visualc/libraries/staticdll.htm
|
|
| Back to top |
|
 |
|