diff options
Diffstat (limited to 'core/bind/core_bind.h')
-rw-r--r-- | core/bind/core_bind.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/bind/core_bind.h b/core/bind/core_bind.h index 0084726547..f5c94dcf06 100644 --- a/core/bind/core_bind.h +++ b/core/bind/core_bind.h @@ -243,6 +243,10 @@ public: READ_WRITE=3, }; + Error open_encrypted(const String& p_path, int p_mode_flags,const Vector<uint8_t>& p_key); + Error open_encrypted_pass(const String& p_path, int p_mode_flags,const String& p_pass); + + Error open(const String& p_path, int p_mode_flags); ///< open a file void close(); ///< close a file bool is_open() const; ///< true when file is open |