* IconName is just func_about for example * will search files * icons/iconname.icns - existing themes * icons/iconname.png - it will be more correct * iconname.png - for example checkbox.png * if not found use embedded. It should be decoded again after theme change * SVG themes filled separately after ThemeName defined so the procedure just return EFI_SUCCESS * The function always cr
| 582 | * The function always create new image and will not be used to get a link to existing image |
| 583 | */ |
| 584 | EFI_STATUS XImage::LoadXImage(EFI_FILE *BaseDir, const char* IconName) |
| 585 | { |
| 586 | return LoadXImage(BaseDir, XStringW().takeValueFrom(IconName)); |
| 587 | } |
| 588 | |
| 589 | EFI_STATUS XImage::LoadXImage(EFI_FILE *BaseDir, const wchar_t* LIconName) |
| 590 | { |
nothing calls this directly
no test coverage detected