summaryrefslogtreecommitdiff
path: root/hid/lib/drivers/storage.h
diff options
context:
space:
mode:
Diffstat (limited to 'hid/lib/drivers/storage.h')
-rw-r--r--hid/lib/drivers/storage.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/hid/lib/drivers/storage.h b/hid/lib/drivers/storage.h
index 74c4f62a..4f04f3c1 100644
--- a/hid/lib/drivers/storage.h
+++ b/hid/lib/drivers/storage.h
@@ -19,16 +19,16 @@
# #
*****************************************************************************/
+
#pragma once
#include "driver.h"
-namespace DRIVERS {
-
+namespace DRIVERS {
struct Storage : public Driver {
using Driver::Driver;
- virtual void read_block (void *_dst, const void *_src, size_t _n) {}
- virtual void update_block (const void *_src, void *_dst, size_t _n) {}
+ virtual void readBlock(void *dest, const void *src, size_t size) {}
+ virtual void updateBlock(const void *src, void *dest, size_t size) {}
};
}