summaryrefslogtreecommitdiffhomepage
path: root/include/System
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-10 11:52:02 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-10 11:52:02 +0100
commitd40bd3572e6263e1a5779ebf985e3bff60c1bdb8 (patch)
tree9eb7580f46ebe0e56bba34d74403a562d2a8cdf3 /include/System
parent3030eabdfe1333428eb621a4330a54f83f5d2e7b (diff)
[CHORE] Update include headers of the NeSystem.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/System')
-rw-r--r--include/System/Ne.h17
-rw-r--r--include/System/X11+Fwd.h11
2 files changed, 20 insertions, 8 deletions
diff --git a/include/System/Ne.h b/include/System/Ne.h
index 7b54607..9bacc81 100644
--- a/include/System/Ne.h
+++ b/include/System/Ne.h
@@ -1,8 +1,21 @@
// Copyright 2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
-// Official repository: https://github.com/ne-foss-org/src
+// Official repository: https://github.com/ne-foss-org/ne_system
-#pragma once
+#ifndef _NE_H_
+#define _NE_H_
+
+#define _NE_SYSTEM 202603L
#include <System/Config.h>
+
+// POSIX wrapper
+#include <libPOSIXWrapper/POSIXKit/unistd.h>
+// IPC
+#include <libMsg/MsgKit/Server.h>
+// System calls
#include <libSystem/SystemKit/System.h>
+// Sound mixer
+#include <libSoundSystem/SoundSystemKit/VirtualMixer.h>
+
+#endif // !_NE_H_
diff --git a/include/System/X11+Fwd.h b/include/System/X11+Fwd.h
index 4de1193..e18136c 100644
--- a/include/System/X11+Fwd.h
+++ b/include/System/X11+Fwd.h
@@ -4,12 +4,11 @@
#pragma once
+// NeSystem Header.
#include <System/Ne.h>
-/// @brief This file forward declares X11 types.
-
-typedef SInt32 WINDOW;
-typedef SInt32 CURSOR;
-typedef SInt32 FONT;
-
+// Defs of the X11 protocol.
+#include <System/X11/Imports.h>
+// XDG' extensions of the X11 protocol.
+#include <System/X11/Ext/Imports.h>