| 431 | #ifdef DISTRHO_OS_WASM |
| 432 | extern "C" { |
| 433 | EMSCRIPTEN_KEEPALIVE |
| 434 | void fileBrowserSetPathNamespaced(FileBrowserHandle handle, const char* filename) |
| 435 | { |
| 436 | handle->free(); |
| 437 | |
| 438 | if (filename != nullptr && filename[0] != '\0') |
| 439 | handle->selectedFile = strdup(filename); |
| 440 | else |
| 441 | handle->selectedFile = kSelectedFileCancelled; |
| 442 | } |
| 443 | } |
| 444 | #endif |
| 445 |