[tcljava-user] mail group
Brought to you by:
mdejong
From: Tam H. <th...@su...> - 2001-05-23 23:34:07
|
Is this the only mail group to join for help on tclblend? Is there any of other mail group for beginners? Well i'm just going to ask my beginner's question anyway..I just need to know how to call a method/function that is contain in a c extension loaded in a class. I get "no such method gcd in class SimpleExtension" in my script and gcd is the function loaded in the dll.. /*tcl script*/ package require java set loadobj [java::load -classpath . SimpleExtension] set obj [java::new SimpleExtension] set x [java::new Integer 42] set y [java::new Integer 105] set g [$obj gcd $x $y] |