diff options
author | Timothy <timmot@users.noreply.github.com> | 2021-07-02 21:40:44 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-03 12:16:00 +0200 |
commit | 944e5cfb350ec1117ae2923dffb094b68588b8e9 (patch) | |
tree | 366907051f7d518103ac1d46626554020ff778f3 /Userland/Services/LaunchServer/LaunchServer.ipc | |
parent | 83fb97c30153e01fe501de0414ac07808a8b1339 (diff) | |
download | serenity-944e5cfb350ec1117ae2923dffb094b68588b8e9.zip |
Everywhere: Use IPC include syntax
Remove superfluous includes from IPCCompiler's generated output and
add include directives in IPC definitions where appropriate.
Diffstat (limited to 'Userland/Services/LaunchServer/LaunchServer.ipc')
-rw-r--r-- | Userland/Services/LaunchServer/LaunchServer.ipc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Services/LaunchServer/LaunchServer.ipc b/Userland/Services/LaunchServer/LaunchServer.ipc index 9cafe22512..d296712be3 100644 --- a/Userland/Services/LaunchServer/LaunchServer.ipc +++ b/Userland/Services/LaunchServer/LaunchServer.ipc @@ -1,3 +1,5 @@ +#include <AK/URL.h> + endpoint LaunchServer { open_url(URL url, String handler_name) => (bool response) |