diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-05-24 15:14:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-24 15:14:02 +0200 |
commit | 65eff1cfddb2ac2a627679f01c8efb90c4d6c34d (patch) | |
tree | 253aa1932415fbf56c71c88c67f907f1131f09ef /core/io | |
parent | 9cf1d034a7f08c37f3c7f4660c50c8784864daa3 (diff) | |
parent | a1cb6f07a1f4c85c6e00e9cdcb18e048846fc706 (diff) |
Merge pull request #46866 from bruvzg/symlinks_and_macos_gdn_framework_export_4
Diffstat (limited to 'core/io')
-rw-r--r-- | core/io/file_access_pack.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/io/file_access_pack.h b/core/io/file_access_pack.h index e47c9ea543..763c0fb327 100644 --- a/core/io/file_access_pack.h +++ b/core/io/file_access_pack.h @@ -245,6 +245,10 @@ public: uint64_t get_space_left(); + virtual bool is_link(String p_file) { return false; } + virtual String read_link(String p_file) { return p_file; } + virtual Error create_link(String p_source, String p_target) { return FAILED; } + virtual String get_filesystem_type() const; DirAccessPack(); |