| 315 | |
| 316 | |
| 317 | void |
| 318 | ShowLocalizedMsg(const UINT stringId, ...) |
| 319 | { |
| 320 | va_list args; |
| 321 | va_start(args, stringId); |
| 322 | __ShowLocalizedMsgEx(MB_OK, NULL, _T(PACKAGE_NAME), stringId, args); |
| 323 | va_end(args); |
| 324 | } |
| 325 | |
| 326 | HICON |
| 327 | LoadLocalizedIconEx(const UINT iconId, int cxDesired, int cyDesired) |
no test coverage detected