Hi.
In message "[ruby-talk:00146] calling a Ruby function from C?"
on 98/12/26, "Bryce" <crowdog / siscom.net> writes:
|I would like to send my C code a Ruby function pointer
|so that C can call my Ruby function.
I don't really get it, sorry. The ruby method can be invoked by:
rb_funcall(obj, id, nargs, ...)
where id is the method name symbol which can be retrieved by
rb_intern(name)
Hope this helps.
matz.