| 3 | #include <atlstr.h> |
| 4 | |
| 5 | std::wstring LocUtils::GetStringFromResources(unsigned int nID) { |
| 6 | ATL::CStringW str; |
| 7 | if (str.LoadString(nID)) { |
| 8 | return std::wstring((LPCWSTR)str); |
| 9 | } |
| 10 | return L""; |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected