[Oorexx-devel] Calling programs that are passed in a buffer?

2009-05-11 Thread Rony G. Flatscher
To execute a program with an interpreter instance, one can get a thread context and then use -CallProgram(name, array), which expects the program to be stored in a file named name, supplying it with the arguments in array. However, if Rexx scripts are passed via a buffer (e.g. retrieved from

Re: [Oorexx-devel] Calling programs that are passed in a buffer?

2009-05-11 Thread Rick McGuire
There is no CallProgramFromData(), but you can use NewRoutine() to create a routine object and call thatwhich is essentially the equivalent. Rick On Mon, May 11, 2009 at 12:10 PM, Rony G. Flatscher rony.flatsc...@wu-wien.ac.at wrote: To execute a program with an interpreter instance, one