| 20 | |
| 21 | |
| 22 | ILstring ILAPIENTRY iluGetString(ILenum StringName) |
| 23 | { |
| 24 | switch (StringName) |
| 25 | { |
| 26 | case ILU_VENDOR: |
| 27 | return (ILstring)_iluVendor; |
| 28 | //changed 2003-09-04 |
| 29 | case ILU_VERSION_NUM: |
| 30 | return (ILstring)_iluVersion; |
| 31 | default: |
| 32 | ilSetError(ILU_INVALID_PARAM); |
| 33 | break; |
| 34 | } |
| 35 | return NULL; |
| 36 | } |
| 37 | |
| 38 | |
| 39 | void ILAPIENTRY iluGetIntegerv(ILenum Mode, ILint *Param) |
nothing calls this directly
no test coverage detected