On 29 October 2013 16:27, Annick Fron <info@afceurope.com> wrote:
Hi

I want to launch a simple init with the following C signature :

void gst_init (int *argc, char **argv[])

If I write

<apicall: void 'gst_init' (int*, char**) module: 'blabla'>

I get a Smalltalk syntax error

Annick Fron


To use this syntax, you must load old FFI implementation.
Or use NativeBoost:

init: intarg with: chararg
 <primitive: 'primitiveNativeCall' module: 'NativeBoostPlugin'>
self nbCall: 'void gst_init (int * intarg, char ** chararg)' module: 'blaba'


--
Best regards,
Igor Stasenko.