Probably a stupid mistake, but I can't get this function to imort. The following line is located in a module's script header:
import function GetNumber(TextValueOption param);
The error is simply "Parse error at 'TextValueOption'"
What did I do wrong this time?
Have you defined the enum in the script header? Otherwise it's unknown to anything outside the module script, including the function import line.
Hey, thanks strazer, I had the enum name different from the function name. :P