| 282 | |
| 283 | |
| 284 | int |
| 285 | LoadLocalizedStringBuf(PTSTR buffer, int bufferSize, const UINT stringId, ...) |
| 286 | { |
| 287 | va_list args; |
| 288 | va_start(args, stringId); |
| 289 | int len = LoadStringLang(stringId, GetGUILanguage(), buffer, bufferSize, args); |
| 290 | va_end(args); |
| 291 | return len; |
| 292 | } |
| 293 | |
| 294 | |
| 295 | static int |
no test coverage detected