Das wird problemlos kompiliert:
struct structInfo{
int num1;
int num2;
int num3;
int num4;
_TCHAR name1[260];
_TCHAR name2[260];
_TCHAR name3[260];
};
static struct structInfo myGlobalInfos[] =
{
{1 , 2, 3, 4, _T("text1"), _T("text2"), _T("text3")},
{4 ,5, 6, 7, _T("text4"), _T("text5"), _T("text6")},
{8 ,15, 56, 97, _T("text7"), _T("text8"), _T("text9")}
};
---------------------TCHAR name3[260] --> CString name3----------
struct structInfo{
int num1;
int num2;
int num3;
int num4;
_TCHAR name1[260];
_TCHAR name2[260];
CString name3;
};
Das wird auch von VC 8.0.50 problemlos kompiliert.
VC 7.0.9466 gibt allerdings folgende Fehlermeldung aus:
error C2440: 'initializing' : cannot convert from 'int' to 'structInfo
No constructor could take the source type, or constructor overload resolution was ambiguous
Weißt jemand warum?
Danke im voraus