Reads an already-opened MP3 file
| 218 | |
| 219 | //! Reads an already-opened MP3 file |
| 220 | ILboolean ilLoadMp3F(ILHANDLE File) |
| 221 | { |
| 222 | ILuint FirstPos; |
| 223 | ILboolean bRet; |
| 224 | |
| 225 | iSetInputFile(File); |
| 226 | FirstPos = itell(); |
| 227 | bRet = iLoadMp3Internal(); |
| 228 | iseek(FirstPos, IL_SEEK_SET); |
| 229 | |
| 230 | return bRet; |
| 231 | } |
| 232 | |
| 233 | |
| 234 | //! Reads from a memory "lump" that contains a MP3 |
no test coverage detected