diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-27 09:06:08 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-27 09:11:32 +0100 |
| commit | 5f12929a80c6cc03bff075be7e1b8dc74cd0f2c4 (patch) | |
| tree | 012d939cde8a7e0b9cfa5e2214c14eedb57c5f01 /include/ne-system/System/WindowSystems/X11.h | |
| parent | c32f2d094de351d04b158758e0cb7f45b14b00b6 (diff) | |
[FEAT] frameworks: Update frameworks code, adding new `libSocket` framework.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/ne-system/System/WindowSystems/X11.h')
| -rw-r--r-- | include/ne-system/System/WindowSystems/X11.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/include/ne-system/System/WindowSystems/X11.h b/include/ne-system/System/WindowSystems/X11.h new file mode 100644 index 0000000..e8bf997 --- /dev/null +++ b/include/ne-system/System/WindowSystems/X11.h @@ -0,0 +1,28 @@ +// 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/src + +#ifndef _SYSTEM_NE_X11_H_ +#define _SYSTEM_NE_X11_H_ + +#define _NE_X11_SYSTEM 202603L + +struct XFCURSOR; // Cursor struct +struct XFDISPLAY; // Display struct +struct XFCONN; // Connection struct + +typedef struct XFCURSOR* XcursorImage; +typedef struct XFCURSOR** XcursorCursors; + +/// @brief NeSystem Header. +#include <ne-system/System/NeSystem.h> + +/// @brief Defs of the X11 protocol. +#include <ne-system/System/X11/Imports.h> + +/// @brief XDG' extensions of the X11 protocol. +#include <ne-system/System/X11/Ext/Imports.h> + +#endif // _SYSTEM_NE_X11_H_ + |
