From: Thomas Unglert

Subject: FFI

Date: 1997-7-18 9:00


Hi,

i have two question to FFI in ACL.

1) I have only a C pointer to a function (located in a DLL). How can I call
   that function in ACL ? And how are the arguments prepared ?

2) I want to do the following in ACL FFI. (sorry C code)

   char* first_string = "dfjdldjl";
   char* second_string = "fgklg"
   char* argv[2];

   argv[0] = first_string;
   argv[1] = second_string;

  Any help and examples are welcome !

  Thanks in advance.