Just a convenience function.
| 346 | |
| 347 | //! Just a convenience function. |
| 348 | HBITMAP ILAPIENTRY ilutWinLoadImage(ILstring FileName, HDC hDC) |
| 349 | { |
| 350 | HBITMAP Bitmap; |
| 351 | |
| 352 | iBindImageTemp(); |
| 353 | if (!ilLoadImage(FileName)) |
| 354 | return 0; |
| 355 | |
| 356 | Bitmap = ilutConvertToHBitmap(hDC); |
| 357 | |
| 358 | return Bitmap; |
| 359 | } |
| 360 | |
| 361 | |
| 362 | #ifndef _WIN32_WCE |
nothing calls this directly
no test coverage detected