diff --git a/driver/filesystem/filesystem.hpp b/driver/filesystem/filesystem.hpp index 40567a5..fc7faab 100644 --- a/driver/filesystem/filesystem.hpp +++ b/driver/filesystem/filesystem.hpp @@ -250,6 +250,9 @@ public: // Close an open directory. virtual int Closedir(const char *path, OpenFile *file) { return -ENOSYS; } + + // Ioctl (arbitrary action performed on the opened file) + virtual int Ioctl(const char *path, uintptr_t cmd, void *arg, OpenFile *file) { return -ENOSYS; } };