summaryrefslogtreecommitdiff
path: root/Kernel/Devices/DiskDevice.h
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Devices/DiskDevice.h')
-rw-r--r--Kernel/Devices/DiskDevice.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Devices/DiskDevice.h b/Kernel/Devices/DiskDevice.h
index cbccc1c65b..badf92b0ca 100644
--- a/Kernel/Devices/DiskDevice.h
+++ b/Kernel/Devices/DiskDevice.h
@@ -18,6 +18,7 @@ public:
bool write(DiskOffset, unsigned length, const byte*);
virtual bool read_blocks(unsigned index, word count, byte*) = 0;
+ virtual bool write_blocks(unsigned index, word count, const byte*) = 0;
protected:
DiskDevice();