1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 14:07:45 +00:00

Everywhere: Use IPC include syntax

Remove superfluous includes from IPCCompiler's generated output and
add include directives in IPC definitions where appropriate.
This commit is contained in:
Timothy 2021-07-02 21:40:44 -07:00 committed by Andreas Kling
parent 83fb97c301
commit 944e5cfb35
22 changed files with 49 additions and 5 deletions

View file

@ -1,3 +1,6 @@
#include <LibCore/AnonymousBuffer.h>
#include <LibGfx/ShareableBitmap.h>
endpoint WindowClient
{
fast_greet(Vector<Gfx::IntRect> screen_rects, u32 main_screen_index, Core::AnonymousBuffer theme_buffer, String default_font_query, String fixed_width_font_query) =|

View file

@ -1,3 +1,5 @@
#include <LibGfx/ShareableBitmap.h>
endpoint WindowManagerClient
{
window_removed(i32 wm_id, i32 client_id, i32 window_id) =|

View file

@ -1,3 +1,5 @@
#include <LibGfx/ShareableBitmap.h>
endpoint WindowManagerServer
{
set_event_mask(u32 event_mask) =|

View file

@ -1,3 +1,6 @@
#include <LibCore/AnonymousBuffer.h>
#include <LibGfx/ShareableBitmap.h>
endpoint WindowServer
{
create_menubar(i32 menubar_id) =|