kinglu
April 9th, 2008, 09:11 AM
in my program:
struct point{
int left;
int right;
point* next;
};
struct borderPoint{
std::string path;
std::string name;
point row;
};
vector<borderPoint> pic; // keep many pics's borders
vector<borderPoint>::iterator vPic;
pic.push_back( *picBorder );
vPic = pic.begin();
Then there two lnk errors as shown below:
1) 无法解析的标记(0A0004BE) "extern "C" int __cdecl _CrtDbgReportW(int,wchar_t const *,int,wchar_t const *,wchar_t const *,...)" (?_CrtDbgReportW@@$$J0YAHHPB_WH00ZZ),......................
2)无法解析的外部符号 "extern "C" int __cdecl _CrtDbgReportW(int,wchar_t const *,int,wchar_t const *,wchar_t const *,...)" (?_CrtDbgReportW@@$$J0YAHHPB_WH00ZZ).....................
struct point{
int left;
int right;
point* next;
};
struct borderPoint{
std::string path;
std::string name;
point row;
};
vector<borderPoint> pic; // keep many pics's borders
vector<borderPoint>::iterator vPic;
pic.push_back( *picBorder );
vPic = pic.begin();
Then there two lnk errors as shown below:
1) 无法解析的标记(0A0004BE) "extern "C" int __cdecl _CrtDbgReportW(int,wchar_t const *,int,wchar_t const *,wchar_t const *,...)" (?_CrtDbgReportW@@$$J0YAHHPB_WH00ZZ),......................
2)无法解析的外部符号 "extern "C" int __cdecl _CrtDbgReportW(int,wchar_t const *,int,wchar_t const *,wchar_t const *,...)" (?_CrtDbgReportW@@$$J0YAHHPB_WH00ZZ).....................