I have a function in .dll library:
int DATA(ClientData clientData, Tcl_Interp *interp,
int argc, char *argv[])
{
static char rtn[100];
if (argc != 3) {
Tcl_SetResult(interp, "wrong number of arguments ", TCL_STATIC);
return TCL_ERROR;
}
if (...
I am new to TCL/TK. But I need your prompt help in how to call a .dll from TCL on Windows 2K platform. I have a .dll, but can't figure out how to call functions in it.
Any of your help or direct me to reference is greatly appreciately.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.