diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-08-29 13:45:34 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-08-29 13:45:34 (GMT) |
commit | b64c6bba1120535af111ababee66e6965add096c (patch) | |
tree | f0a9506cb129ca19bc5800e0526826cdddc7dad7 /Source/cmCPluginAPI.cxx | |
parent | e8d0e8088f7caff5a26ae266f61dd9669ad3c638 (diff) | |
download | CMake-b64c6bba1120535af111ababee66e6965add096c.zip CMake-b64c6bba1120535af111ababee66e6965add096c.tar.gz CMake-b64c6bba1120535af111ababee66e6965add096c.tar.bz2 |
extern C fixes
Diffstat (limited to 'Source/cmCPluginAPI.cxx')
-rw-r--r-- | Source/cmCPluginAPI.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmCPluginAPI.cxx b/Source/cmCPluginAPI.cxx index 6833935..b141160 100644 --- a/Source/cmCPluginAPI.cxx +++ b/Source/cmCPluginAPI.cxx @@ -22,6 +22,9 @@ #include "cmMakefile.h" #include "cmCPluginAPI.h" +extern "C" +{ + void *cmGetClientData(void *info) { return ((cmLoadedCommandInfo *)info)->ClientData; @@ -453,6 +456,8 @@ void cmRemoveFile(const char *name) cmSystemTools::RemoveFile(name); } +} // close the extern "C" scope + cmCAPI cmStaticCAPI = { cmGetClientData, |