Version 4 of What 'embedding' means

Updated 2004-01-13 12:47:06

[polysemy]

"BOOK Tricks of the Java Programming Gurus" has a chapter that illustrates the concept well.

Also see "What is 'embedding'?" [L1 ].

RS: As a simple hint, you do embedding when your C code contains

 #include <tcl.h>
 ...
 Tcl_Interp *interp = NULL;
 Tcl_CreateInterp(interp):
 ...

Then you can create new Tcl commands, link static variables from your C program to Tcl variables, but first of all have the power of Tcl at your fingertips ;-)


I thought there was at least one more call - to some sort of locating the encoding files, etc. function - required?


Category Embedding