diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-19 13:23:45 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-19 13:23:45 +0100 |
commit | f6c662264e0c6d9a5b14d7852bc93338cb62b5ac (patch) | |
tree | 3ddd70a9de123be9ed0c67d9273731d60848d4e2 /core/io/file_access.h | |
parent | d3665effd5024b10fa9a18c5c193f00ba6fc6279 (diff) | |
parent | db7d8c2d87a9704f7404398815c9d686b9a099b9 (diff) |
Merge pull request #69288 from bruvzg/gde_low_level_funcs
[GDExtension] Expose some low level functions and String operators.
Diffstat (limited to 'core/io/file_access.h')
-rw-r--r-- | core/io/file_access.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/io/file_access.h b/core/io/file_access.h index 3116ed521f..3e51ba11ed 100644 --- a/core/io/file_access.h +++ b/core/io/file_access.h @@ -127,7 +127,7 @@ public: Variant get_var(bool p_allow_objects = false) const; virtual uint64_t get_buffer(uint8_t *p_dst, uint64_t p_length) const; ///< get an array of bytes - Vector<uint8_t> _get_buffer(int64_t p_length) const; + Vector<uint8_t> get_buffer(int64_t p_length) const; virtual String get_line() const; virtual String get_token() const; virtual Vector<String> get_csv_line(const String &p_delim = ",") const; @@ -162,7 +162,7 @@ public: virtual String get_pascal_string(); virtual void store_buffer(const uint8_t *p_src, uint64_t p_length); ///< store an array of bytes - void _store_buffer(const Vector<uint8_t> &p_buffer); + void store_buffer(const Vector<uint8_t> &p_buffer); void store_var(const Variant &p_var, bool p_full_objects = false); |