| 422 | |
| 423 | |
| 424 | ILboolean ILAPIENTRY ilSetDuration(ILuint Duration) |
| 425 | { |
| 426 | if (iCurImage == NULL) { |
| 427 | ilSetError(IL_ILLEGAL_OPERATION); |
| 428 | return IL_FALSE; |
| 429 | } |
| 430 | |
| 431 | iCurImage->Duration = Duration; |
| 432 | |
| 433 | return IL_TRUE; |
| 434 | } |
nothing calls this directly
no test coverage detected