cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
c question
c question
Mar 27, 2009 at 1:37pm UTC
lipune
(46)
what is the meaning of this;
#if _cplusplus
extern "C" {
#endif
Mar 27, 2009 at 5:41pm UTC
jsmith
(5804)
if compiling with a C++ compiler, then declare everything inside the extern "C" block as C functions (ie, causes the C++ compiler to not mangle references to the names).
Topic archived. No new replies allowed.