[tcljava-user] Please help..i'm lost on tclblend
Brought to you by:
mdejong
From: Tam H. <th...@su...> - 2001-05-15 22:20:02
|
I haven't found anything on tclblend loading dynamic library such as dll's that are c tcl extensions. I thought about using tcl.lang.Extension but doesn't loadOnDemand expect a classname? String myfile = "d:/Tcl83/bin/hello.tcl"; Interp newInterp = new Interp(); Extension.loadOnDemand(newInterp, "example", "d:/tcl83/lib/example.dll"); newInterp.evalFile(myfile); newInterp.dispose(); |