| 33 | }; |
| 34 | |
| 35 | const char *dataTypeName(IPLDataType type) |
| 36 | { |
| 37 | if (type < 0 || type >= IPL_NUM_DATATYPES) |
| 38 | return "UNKNOWN"; |
| 39 | return dataTypeNames[type]; |
| 40 | } |
| 41 | |
| 42 | const char* const widgetNames[IPL_NUM_WIDGETS] = { |
| 43 | "IPL_WIDGET_DEFAULT", |
no outgoing calls
no test coverage detected