summaryrefslogtreecommitdiffhomepage
path: root/include/ne_system/System/NeSystem.h
blob: 3652678840ce78f216f9e309d801c2f89af41cdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// SPDX-License-Identifier: Apache-2.0
// 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/ne_system

#ifndef _SYSTEM_NE_SYSTEM_H_
#define _SYSTEM_NE_SYSTEM_H_

#define _NE_SYSTEM 202603L

#include <System/Detail/Config.h>

/// @brief POSIX wrapper API
#include <libPOSIXWrapper/POSIXKit/unistd.h>

/// @brief IPC API
#include <libMsg/MsgKit/Server.h>

/// @brief System calls API
#include <libSystem/SystemKit/System.h>

/// @brief Sound mixer API
#include <libSoundSystem/SoundSystemKit/VirtualMixer.h>

#ifdef _NE_NEED_X11
#include <System/WindowSystems/X11.h>
#endif

#ifdef _NE_NEED_WAYLAND
#include <System/WindowSystems/Wayland.h>
#endif

#endif // _SYSTEM_NE_SYSTEM_H_