1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 06:38:10 +00:00
serenity/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

6 lines
169 B
Text

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