i.m using vc6, i made a struct like this:
struct FileInfo
{
char filename[200] = {0};
char ext[20] = {0};
int f_size=0;
int offset=0;
char* pData=0;
};
but I got a error C2059: syntax error : '{' error,
and i dont know how to initialize arrays inside correctly.