| 149 | return true; |
| 150 | } |
| 151 | bool COSImageToolApp::FindListIndex(const string& str, int& index) |
| 152 | { |
| 153 | if (stringicompare(str, "xdamemory")==0) |
| 154 | index= (int)m_sdcards.size(); |
| 155 | else if (stringicompare(str, "xdasdslot")==0) |
| 156 | index= (int)m_sdcards.size()-1; |
| 157 | else if (stringicompare(str, "localsdcard")==0) |
| 158 | index= 0; |
| 159 | else |
| 160 | return false; |
| 161 | |
| 162 | return true; |
| 163 | } |
| 164 | BOOL COSImageToolApp::InitInstance() |
| 165 | { |
| 166 | DebugOutputDebugString(); |
nothing calls this directly
no test coverage detected