----- Original Message -----
From: "Lawrence Lustig" <[EMAIL PROTECTED]>
To: "RBASE-L Mailing List" <[email protected]>
Sent: Tuesday, June 24, 2008 1:31 PM
Subject: [RBASE-L] - Re: Compiler -- get command line arguments
> Did you ever write a manual on this stuff -- I can't remember.
There is a pretty good bit of info in the HelpFile of your latest and greatest
for the DLCall function and related. The Two added functions that are not
there are:
ChkFunc and DelFunc
called as:
set var v1 = (ChkFunc('SomeFunc'))
Returns 0 and 1 for false and true respectively.
ChkFunc is to see if the Declaration is present and DelFunc Removes the mapping
of the Declaration.
and command line List Func that lists currently loaded functions.
You will see that Type Text is passed byRef (pointer) in all cases.
You just specify the SIZE of TEXT to economize on available memory usage (as
mentioned in the HelpFile).
> Can you pass a bunch of char buffers in to these functions for parsing
> purposes?
> --
> Larry