blob: cb788d6a117459b732e44b8cd5c300ee3fff3cce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
|