summaryrefslogtreecommitdiffhomepage
path: root/dev/libDDK/DriverKit/cpp
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-09-07 18:12:25 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-09-07 18:12:25 +0200
commit537cadbf78695a01ea1c00a0a5a4b6b70ddac8c3 (patch)
tree293cd2e60b377729805f1252c37dd28bb332ee6d /dev/libDDK/DriverKit/cpp
parentd9e1479799ef2d7594c9c9f7dc2724353a01faff (diff)
feat: `ne_launch` and `LaunchHelpers.fwrk`: PID zero of NeKernel.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/libDDK/DriverKit/cpp')
-rw-r--r--dev/libDDK/DriverKit/cpp/object.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/dev/libDDK/DriverKit/cpp/object.hpp b/dev/libDDK/DriverKit/cpp/object.hpp
new file mode 100644
index 00000000..3bf52657
--- /dev/null
+++ b/dev/libDDK/DriverKit/cpp/object.hpp
@@ -0,0 +1,16 @@
+/* -------------------------------------------
+
+ Copyright Amlal El Mahrouss 2025, all rights reserved.
+
+ FILE: ddk.h
+ PURPOSE: DDK Driver model base header.
+
+ ------------------------------------------- */
+
+#pragma once
+
+#include <DriverKit/macros.h>
+
+#define DK_INTERFACE_IMPL : public ::DKInterface
+
+class DKInterface;