| 304 | } |
| 305 | |
| 306 | int |
| 307 | ShowLocalizedMsgEx(const UINT type, HANDLE parent, LPCTSTR caption, const UINT stringId, ...) |
| 308 | { |
| 309 | va_list args; |
| 310 | va_start(args, stringId); |
| 311 | int result = __ShowLocalizedMsgEx(type, parent, caption, stringId, args); |
| 312 | va_end(args); |
| 313 | return result; |
| 314 | } |
| 315 | |
| 316 | |
| 317 | void |
no test coverage detected