| 261 | |
| 262 | |
| 263 | static PTSTR |
| 264 | __LoadLocalizedString(const UINT stringId, va_list args) |
| 265 | { |
| 266 | static TCHAR msg[512]; |
| 267 | msg[0] = 0; |
| 268 | LoadStringLang(stringId, GetGUILanguage(), msg, _countof(msg), args); |
| 269 | return msg; |
| 270 | } |
| 271 | |
| 272 | |
| 273 | PTSTR |
no test coverage detected