summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/KernelKit/DeviceMgr.h
diff options
context:
space:
mode:
authorAmlal <amlal.elmahrouss@icloud.com>2025-02-22 08:45:43 +0100
committerAmlal <amlal.elmahrouss@icloud.com>2025-02-22 08:45:43 +0100
commit34f62ae2dd8c77cee1f0f3680caf407b1be6b350 (patch)
tree0985426a5d3baf2ae398a3f27ee4faca5d879f2e /dev/Kernel/KernelKit/DeviceMgr.h
parent917938db87fee3a905a78c499d2fe1dc2f0b5ca5 (diff)
New DeviceMgr, other APIs have been reworked as a result.
AHCI becomes the first module to be available in StorageKit. Signed-off-by: Amlal <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Kernel/KernelKit/DeviceMgr.h')
-rw-r--r--dev/Kernel/KernelKit/DeviceMgr.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/dev/Kernel/KernelKit/DeviceMgr.h b/dev/Kernel/KernelKit/DeviceMgr.h
index 34ca2957..a81a6586 100644
--- a/dev/Kernel/KernelKit/DeviceMgr.h
+++ b/dev/Kernel/KernelKit/DeviceMgr.h
@@ -40,7 +40,7 @@ namespace NeOS
class IDeviceObject
{
public:
- explicit IDeviceObject(void (*Out)(T), void (*In)(T))
+ explicit IDeviceObject(void (*Out)(IDeviceObject<T>*, T), void (*In)(IDeviceObject<T>*, T))
: fOut(Out), fIn(In)
{
}
@@ -54,19 +54,19 @@ namespace NeOS
public:
virtual IDeviceObject<T>& operator<<(T Data)
{
- fOut(Data);
+ fOut(this, Data);
return *this;
}
virtual IDeviceObject<T>& operator>>(T Data)
{
- fIn(Data);
+ fIn(this, Data);
return *this;
}
virtual const char* Name() const
{
- return "IDeviceObject";
+ return "/dev/null";
}
operator bool()
@@ -80,8 +80,8 @@ namespace NeOS
}
protected:
- Void (*fOut)(T Data) = {nullptr};
- Void (*fIn)(T Data) = {nullptr};
+ Void (*fOut)(IDeviceObject<T>*, T Data) = {nullptr};
+ Void (*fIn)(IDeviceObject<T>*, T Data) = {nullptr};
};
///