I have to pass a string to a C file from a bmax one.
On the file there is:
char s[80];
void func(?)
{
...
}
and on the bmax file i need to write:
import "file.c"
extern
function func(?)
end extern
func("string")
What should i write on the places i've marked with a "?" ?
On the file there is:
char s[80];
void func(?)
{
...
}
and on the bmax file i need to write:
import "file.c"
extern
function func(?)
end extern
func("string")
What should i write on the places i've marked with a "?" ?