summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/GfxKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-01-07 09:51:21 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-01-07 09:51:21 +0100
commitbd1598a2b97277e527240f721df14911602cbf11 (patch)
tree49d894db69461698d13aa7c1ce79bd6ef9d444e1 /src/kernel/GfxKit
parent3ce1536af0519e5a7b0b34df4f85cd0cace51f8b (diff)
chore: kernel: Internal API fixes and improvements.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/kernel/GfxKit')
-rw-r--r--src/kernel/GfxKit/FB.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/kernel/GfxKit/FB.h b/src/kernel/GfxKit/FB.h
index fc00ba3f..79539995 100644
--- a/src/kernel/GfxKit/FB.h
+++ b/src/kernel/GfxKit/FB.h
@@ -8,6 +8,7 @@
#include <KernelKit/DeviceMgr.h>
namespace Kernel {
+
class FBDeviceInterface;
struct FBDevicePacket;
@@ -48,6 +49,7 @@ class FBDeviceInterface NE_DEVICE<FBDevicePacket*> {
FBDeviceInterface& operator<<(FBDevicePacket* dat) override;
FBDeviceInterface& operator>>(FBDevicePacket* dat) override;
};
+
} // namespace Kernel
#endif