Im tying to define a new type using this lines: typedef struct { int testNumber; StringArray wavefromFiles; } ImportTestNumber;
typedef vector TestNumberArray;
Im able to use the ImportTestNumber type in my code, but is the in the last line where I get the error message. Is this a OriginC limitation, can I make arrays of my user define types? Or am I doing something wrong in this code.