Sets Param equal to the current value of the Mode
| 319 | |
| 320 | //! Sets Param equal to the current value of the Mode |
| 321 | void ILAPIENTRY ilGetBooleanv(ILenum Mode, ILboolean *Param) |
| 322 | { |
| 323 | if (Param == NULL) { |
| 324 | ilSetError(IL_INVALID_PARAM); |
| 325 | return; |
| 326 | } |
| 327 | |
| 328 | *Param = ilGetInteger(Mode); |
| 329 | |
| 330 | return; |
| 331 | } |
| 332 | |
| 333 | |
| 334 | //! Returns the current value of the Mode |
nothing calls this directly
no test coverage detected