blob: 749261e8b4b47b2d2937ad48c022247e627d1153 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// 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
#pragma once
#define _ARCH @_ARCH_VER@
#define _SUBSYSTEM_NET @_NET_VER@
#define _SUBSYSTEM_DDK @_DDK_VER@
#define _SUBSYSTEM_SYS @_SYS_VER@
#define _NEKERNEL @_NEKERNEL_VER@
class @_ARCH_VTERMINAL@;
class @_ARCH_VDEVICE@;
class @_ARCH_VSOCKET@;
class @_ARCH_VFILE@;
|