1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 21:37:34 +00:00

Move WindowServer API types header into WindowServer/.

This commit is contained in:
Andreas Kling 2019-02-15 09:14:21 +01:00
parent 0d23cd73e6
commit a54cd84c59
6 changed files with 5 additions and 5 deletions

View file

@ -5,7 +5,7 @@
#include <AK/HashMap.h>
#include <AK/OwnPtr.h>
#include <AK/Vector.h>
#include <Kernel/GUITypes.h>
#include <WindowServer/WSAPITypes.h>
class GObject;
class GNotifier;

View file

@ -5,7 +5,7 @@
#include <WindowServer/WSMenuItem.h>
#include <WindowServer/WSWindow.h>
#include <WindowServer/WSWindowManager.h>
#include <Kernel/GUITypes.h>
#include <WindowServer/WSAPITypes.h>
#include <Kernel/MemoryManager.h>
#include <Kernel/Process.h>

View file

@ -4,7 +4,7 @@
#include "WSMessage.h"
#include "WSMessageLoop.h"
#include "WSWindowManager.h"
#include <Kernel/GUITypes.h>
#include <WindowServer/WSAPITypes.h>
#include <WindowServer/WSClientConnection.h>
#include <SharedGraphics/Painter.h>
#include <SharedGraphics/Font.h>

View file

@ -6,7 +6,7 @@
#include <WindowServer/WSClientConnection.h>
#include "PS2MouseDevice.h"
#include <Kernel/Keyboard.h>
#include <Kernel/GUITypes.h>
#include <WindowServer/WSAPITypes.h>
#include <AK/Bitmap.h>
#include "Process.h"

View file

@ -2,7 +2,7 @@
#include "WSWindowManager.h"
#include "WSMessage.h"
#include "WSMessageLoop.h"
#include <Kernel/GUITypes.h>
#include <WindowServer/WSAPITypes.h>
#include <WindowServer/WSClientConnection.h>
WSWindow::WSWindow(WSMenu& menu)