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/Drivers | |
| 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/Drivers')
| -rw-r--r-- | include/ne-system/Drivers/DDK.h | 11 | ||||
| -rw-r--r-- | include/ne-system/Drivers/Detail/Config.h | 19 |
2 files changed, 30 insertions, 0 deletions
diff --git a/include/ne-system/Drivers/DDK.h b/include/ne-system/Drivers/DDK.h new file mode 100644 index 0000000..6503969 --- /dev/null +++ b/include/ne-system/Drivers/DDK.h @@ -0,0 +1,11 @@ +// 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 _NE_DDK_DDK_H_ +#define _NE_DDK_DDK_H_ + +#include <ne-system/Drivers/Detail/Config.h> + +#endif // _NE_DDK_DDK_H_ diff --git a/include/ne-system/Drivers/Detail/Config.h b/include/ne-system/Drivers/Detail/Config.h new file mode 100644 index 0000000..cb788d6 --- /dev/null +++ b/include/ne-system/Drivers/Detail/Config.h @@ -0,0 +1,19 @@ +// 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 _NE_DDK_CONFIG_H_ +#define _NE_DDK_CONFIG_H_ + +#define _ARCH __ne_arch + +#define _SUBSYSTEM_NET 0x1000 +#define _SUBSYSTEM_DDK 0x1000 +#define _SUBSYSTEM_SYS 0x1000 + +#define _NEKERNEL 202603L + +#include <libDDK/DriverKit/DriverKit.h> + +#endif |
