| 50 | |
| 51 | |
| 52 | ILstring ILAPIENTRY ilutGetString(ILenum StringName) |
| 53 | { |
| 54 | switch (StringName) |
| 55 | { |
| 56 | case ILUT_VENDOR: |
| 57 | return (ILstring)_ilutVendor; |
| 58 | //changed 2003-09-04 |
| 59 | case ILUT_VERSION_NUM: |
| 60 | return (ILstring)_ilutVersion; |
| 61 | default: |
| 62 | ilSetError(ILUT_INVALID_PARAM); |
| 63 | break; |
| 64 | } |
| 65 | return NULL; |
| 66 | } |
| 67 | |
| 68 | |
| 69 | ILboolean ILAPIENTRY ilutEnable(ILenum Mode) |
nothing calls this directly
no test coverage detected