diff options
author | Brad King <brad.king@kitware.com> | 2002-07-26 13:54:47 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-07-26 13:54:47 (GMT) |
commit | 20b1d940a407c4e8184e0aff73fa76ce0dafcb2b (patch) | |
tree | 4a7f5d9827d91ec5bd6fd6fd3f165b213aa3abef /Source/cmVTKWrapTclCommand.cxx | |
parent | 6811b49d2b5305dfe099f26ce1dc5a1255a2b379 (diff) | |
download | CMake-20b1d940a407c4e8184e0aff73fa76ce0dafcb2b.zip CMake-20b1d940a407c4e8184e0aff73fa76ce0dafcb2b.tar.gz CMake-20b1d940a407c4e8184e0aff73fa76ce0dafcb2b.tar.bz2 |
BUG: Generated call to Tcl_CreateCommand for vtkCommand should cast pointer to extern "C" version.
Diffstat (limited to 'Source/cmVTKWrapTclCommand.cxx')
-rw-r--r-- | Source/cmVTKWrapTclCommand.cxx | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Source/cmVTKWrapTclCommand.cxx b/Source/cmVTKWrapTclCommand.cxx index 5a707db..172e032 100644 --- a/Source/cmVTKWrapTclCommand.cxx +++ b/Source/cmVTKWrapTclCommand.cxx @@ -229,6 +229,13 @@ bool cmVTKWrapTclCommand::WriteInit(const char *kitName, fprintf(fout,"#include \"vtkTclUtil.h\"\n"); + fprintf(fout, + "extern \"C\"\n" + "{\n" + " typedef int (*vtkTclCommandType)(ClientData, Tcl_Interp *,int, char *[]);\n" + "}\n" + "\n"); + for (i = 0; i < classes.size(); i++) { fprintf(fout,"int %sCommand(ClientData cd, Tcl_Interp *interp,\n int argc, char *argv[]);\n",classes[i].c_str()); @@ -300,7 +307,9 @@ bool cmVTKWrapTclCommand::WriteInit(const char *kitName, " Tcl_CreateExitHandler(vtkCommonDeleteAssocData,(ClientData *)info);\n"); /* create special vtkCommand command */ - fprintf(fout," Tcl_CreateCommand(interp,(char *) \"vtkCommand\",vtkCommand,\n (ClientData *)NULL, NULL);\n\n"); + fprintf(fout," Tcl_CreateCommand(interp,(char *) \"vtkCommand\",\n" + " reinterpret_cast<vtkTclCommandType>(vtkCommand),\n" + " (ClientData *)NULL, NULL);\n\n"); } for (i = 0; i < m_Commands.size(); i++) |