> What is the best way to interface to C on a UNIX-platform from PROGRESS. I
> know there is a HLC interface and I know about the possibillity of a
> deamon-process. But is there another way to directly call C from Progress.
> I need this because the accuracy of progress is not enough (I need more
> then 10 decimals !!!!).
Use the input through command!
For example:
define var temp-data as char.
input through /usr/bin/ls.
repeat:
import temp-data.
/* do something usefull */
message temp-data view-as alert-box information.
end.
--
-----------------------------------------------------------------
Sun Microsystems - (415) 336-7510
-----------------------------------------------------------------