ifndef _WIN32_WCE
| 57 | |
| 58 | //#ifndef _WIN32_WCE |
| 59 | ILuint ILAPIENTRY iluLoadImage(ILconst_string FileName) |
| 60 | { |
| 61 | ILuint Id; |
| 62 | ilGenImages(1, &Id); |
| 63 | if (Id == 0) |
| 64 | return 0; |
| 65 | if (!ilLoadImage(FileName)) { |
| 66 | ilDeleteImages(1, &Id); |
| 67 | return 0; |
| 68 | } |
| 69 | return Id; |
| 70 | } |
| 71 | //#endif//_WIN32_WCE |
nothing calls this directly
no outgoing calls
no test coverage detected