# Names of all arguments initialization
set args [list]
# If we aren't creating a new interp, it must be the first argument
# If the definition of this proc already includes the interp
# argument, use it -- otherwise add one
if {[lindex $adefs 0] != "Tcl_Interp*"} { set newInterp 1
} else {
set newInterp 0
set interp_name [lindex $adefs 1] set newInterp 1
foreach {type var} $adefs {
if {$type == "Tcl_Interp*"} {
set newInterp 0
set interp_name $var
break
}
}
# Create the C-style argument definition
foreach {type var} $adefs {
lappend adefs_c [list $type $var]
set types($var) $type
if {$type == "Tcl_Interp*"} {
continue
}
lappend args $var
}
set adefs_c [join $adefs_c {, }]
# Determine how to return in failure
if {$rtype != "void"} {
$handle add_library curl
$handle go
curl_fetch http://rkeene.org/
}
set handle [tcc4tcl::new]
$handle proc callToTcl {int a int b} int {
$handle proc callToTcl {Tcl_Interp* ip int a int b} int {
set retval [expr {$a + $b}]
return $retval
}
$handle cwrap callToTcl {int a int b} int
$handle cwrap callToTcl {Tcl_Interp* ip int a int b} int
puts [$handle code]
$handle go
if {[callToTcl 3 5] != 8} {
error "3 + 5 is 8"
error "3 + 5 is 8, not [callToTcl 3 5]"
}