I am importing a C function in SV and I need a pass a list. Its a pointer on the C side.How do I do this ?
Thanks.
You can't; at least not directly. You will probably need to create another C function or set of functions to build the list for you in C that returns a chandle. Then you can pass that chandle to your C function.
Dave