summaryrefslogtreecommitdiffstats
path: root/drivers/windows/file_access_windows_pipe.h
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2024-04-08 22:09:34 +0300
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2024-04-12 19:20:49 +0300
commit88b3e68f93fad5681b27b11ddacc562b03d5ef45 (patch)
tree03f57722ab74282b862a5aba5433ff928bfdd972 /drivers/windows/file_access_windows_pipe.h
parent029aadef563fb69cf49aa9795b62f27171f8c3f4 (diff)
downloadredot-engine-88b3e68f93fad5681b27b11ddacc562b03d5ef45.tar.gz
[FileAccess] Implement `resize` method.
Diffstat (limited to 'drivers/windows/file_access_windows_pipe.h')
-rw-r--r--drivers/windows/file_access_windows_pipe.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/windows/file_access_windows_pipe.h b/drivers/windows/file_access_windows_pipe.h
index e6abe61fa3..b885ef78e6 100644
--- a/drivers/windows/file_access_windows_pipe.h
+++ b/drivers/windows/file_access_windows_pipe.h
@@ -69,6 +69,7 @@ public:
virtual Error get_error() const override; ///< get last error
+ virtual Error resize(int64_t p_length) override { return ERR_UNAVAILABLE; }
virtual void flush() override {}
virtual void store_8(uint8_t p_src) override; ///< store a byte
virtual void store_buffer(const uint8_t *p_src, uint64_t p_length) override; ///< store an array of bytes