Is there any way to have a null character in a string that I pass to a DLL in DLL.CallFunction? E.g.,
or
There does not appear to be although supposedly LUA does recognize the null character.
I am using SUF 9.5.
Thanks.
Code:
arg = "null character at end\0"
Code:
arg = "null character at end"..String.Char(0x00);
I am using SUF 9.5.
Thanks.
Comment