华丽.....
到目前为止。我仍然没有办法将配置文件和源的连接联系到一起.......
acat能找到这个BUG真叫华丽了.....
Preferences.cpp文件中
GetPrivateProfileString(_T("eMule"), _T("ScoreAdjustor"), _T(""), scoreAdjustor.GetBufferSetLength(16384), 16384, strFileName);
GetPrivateProfileString(_T("eMule"), _T("License"), _T(""), license.GetBufferSetLength(1024), 1024, strFileName);
替换为
TCHAR buf[16384];
GetPrivateProfileString(_T("eMule"), _T("ScoreAdjustor"), _T(""), buf, 16384, strFileName);
scoreAdjustor = buf;
GetPrivateProfileString(_T("eMule"), _T("License"), _T(""), buf, 1024, strFileName);
license = buf;