Files
ladybird/Services/LaunchServer/LaunchServer.ipc
Andreas Kling 512c04c64f LaunchServer+LibDesktop: Add API to list handlers for a given URL
You can now ask for a list of applications that can handle opening
a given URL. This will be useful for creating context menus.
2020-05-12 18:49:24 +02:00

7 lines
169 B
Plaintext

endpoint LaunchServer = 101
{
Greet() => (i32 client_id)
OpenUrl(String url) => (bool response)
GetHandlersForURL(String url) => (Vector<String> handlers)
}