I have this:
typedef unsigned short WordArray __gc[];
void GetUshortArray( WordArray &LutData);
What the heck is the syntax if I wanted to avoid the typedef?
typedef unsigned short WordArray __gc[];
void GetUshortArray( WordArray &LutData);
What the heck is the syntax if I wanted to avoid the typedef?