1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-09 23:54:20 +00:00

Backends: SDl3: Fixed Platform_OpenInShellFn() return value. (#9027)

This commit is contained in:
ocornut 2025-10-22 13:33:36 +02:00
parent b46f099a3f
commit bdb8243602
3 changed files with 5 additions and 2 deletions

View file

@ -3942,7 +3942,7 @@ struct ImGuiPlatformIO
void* Platform_ClipboardUserData;
// Optional: Open link/folder/file in OS Shell
// (default to use ShellExecuteW() on Windows, system() on Linux/Mac)
// (default to use ShellExecuteW() on Windows, system() on Linux/Mac. expected to return false on failure, but some platforms may always return true)
bool (*Platform_OpenInShellFn)(ImGuiContext* ctx, const char* path);
void* Platform_OpenInShellUserData;