| 37 | |
| 38 | |
| 39 | bool StringList::GetStringA(char *Str,size_t MaxLength) |
| 40 | { |
| 41 | Array<wchar> StrW(MaxLength); |
| 42 | if (!GetString(&StrW[0],StrW.Size())) |
| 43 | return false; |
| 44 | WideToChar(&StrW[0],Str,MaxLength); |
| 45 | return true; |
| 46 | } |
| 47 | |
| 48 | |
| 49 | bool StringList::GetString(wchar *Str,size_t MaxLength) |
nothing calls this directly
no test coverage detected