For each function, call bindCfunc with 4 arguments:
In the following example, the C function cool_func is bound to the name cool-function in Isis, and will be passed 0 as its call_data when it is called:
bindCfunc(script, "cool-function", cool_func, 0);
... /**** Include any external Isis library header files here ****/ #include "isis_cfunc_template.h" main(int argc, char **argv) { ... /**** Add calls to bind external functions, libraries, etc., here ****/ bind_cool_library(script); ... }