2011-05-04 83 views

回答

1

也許這會工作?

int currentSnapshotHeight = _wtoi(ExecuteExternalProgram(_T("current.png"))); 

還檢查項目的Unicode設置是否按預期設置。

1

試試這個:

int currentSnapshotHeight = _wtoi((wchar_t*)ExecuteExternalProgram(L"current.png").GetBuffer()); 
相關問題