C (209/301)

From:Radoslav Hodnicak
Date:23 Aug 99 at 10:29:19
Subject:Re: Re: journey to nil:

From: Radoslav Hodnicak <rh@hysteria.sk>

On Thu, 19 Aug 1999, Rod Schnell wrote:

> From: Rod Schnell <rodsch@telusplanet.net>
> Here's one way to do it.
>
> if ( (in = Open("NIL:", MODE_OLDFILE)) && (out = Open("NIL:",
> MODE_NEWFILE)) )
> {
> ret = SystemTags( routine, // STRPTR full path with args
> SYS_Output, out,
> SYS_Input, in,
> SYS_Asynch, TRUE,
> NP_StackSize, 16384,
> NP_Cli, TRUE,
> ((currentdir) ? NP_CurrentDir : TAG_IGNORE), currentdir,
> TAG_END );
>
> if (async == 0)
> {
> Close(in);
> Close(out);
> }
> }

thanks, i'll give it a try as soon as possible (i had a nasty disk-crash
and i'm currently without everything)

rh