I'm doing C++ programming with Visual C++ 6.0
under Win NT 4.0 and add a GUI to my programms using
TCL/TK.
I do this the following way :
I use the TclPro 1.4.1 source code to compile my own
interpreter to wich i add new commands using C.
I created a new project with VC6.0 (Win32 application)
and added the winmain.cpp file to my project.
In winmain.cpp you find a application init function in
which you can make new commands (implemented in C) available
to the interpreter using the Tcl_CreateCommand(...) function
from the Tcl-libary.
Certainly you have to tell the compiler to use the right
.lib-files.
All that stuff is described in the TclPro documentation.
So download that the TclPro1.4.1 package for Win32
and take a look at the documentation.
don't forget to download also the source-package.
You can find links to that stuff at
Hope this will help you !