Getter for the old Combo() API: const char*[]
| 2144 | |
| 2145 | // Getter for the old Combo() API: const char*[] |
| 2146 | static const char* Items_ArrayGetter(void* data, int idx) |
| 2147 | { |
| 2148 | const char* const* items = (const char* const*)data; |
| 2149 | return items[idx]; |
| 2150 | } |
| 2151 | |
| 2152 | // Getter for the old Combo() API: "item1\0item2\0item3\0" |
| 2153 | static const char* Items_SingleStringGetter(void* data, int idx) |
nothing calls this directly
no outgoing calls
no test coverage detected