| 391 | } |
| 392 | |
| 393 | HICON |
| 394 | LoadLocalizedIcon(const UINT iconId) |
| 395 | { |
| 396 | /* get the required normal icon size (e.g., taskbar icon) */ |
| 397 | int cx = GetSystemMetrics(SM_CXICON); |
| 398 | int cy = GetSystemMetrics(SM_CYICON); |
| 399 | return LoadLocalizedIconEx(iconId, cx, cy); |
| 400 | } |
| 401 | |
| 402 | HICON |
| 403 | LoadLocalizedSmallIcon(const UINT iconId) |
no test coverage detected