* Pure C++ UI Input Processing Function * Processes UI input JSON from JavaScript */
| 182 | * Processes UI input JSON from JavaScript |
| 183 | */ |
| 184 | EMSCRIPTEN_KEEPALIVE void processUiInput(const char* jsonInput) { |
| 185 | if (!jsonInput) { |
| 186 | fl::printf("Error: Received null UI input\n"); |
| 187 | return; |
| 188 | } |
| 189 | |
| 190 | // Process UI input from JavaScript |
| 191 | // Forward to existing UI system |
| 192 | fl::jsUpdateUiComponents(jsonInput); |
| 193 | } |
| 194 | |
| 195 | } // extern "C" |
| 196 |
no test coverage detected