I have a defined struct like this one:
typedef struct tag_GLOBAL_VAR
{
int array1[4];
int array2[5];
.......
int array20[40];
}GLOBAL_VAR;
This structure is used to define a variable in some class:
GLOBAL_VAR g_GlobalVar;
and then used in another class like this:
extern GLOBAL_VAR g_GlobalVar;
class constructor;
class destructor;
int class::Start()
{
//g_GlobalVar.array1 = {1,2,3,4};
//g_GlobalVar.array4 = {1,2,3};
some code;
}
My problem is that i can't initialize (commented lines) those 2 arrays like that, i get a error C2059: syntax error : '{' from VS. Why is this wrong and which is the solution to do it?