diff options
author | Riteo <riteo@posteo.net> | 2023-10-19 00:50:30 +0200 |
---|---|---|
committer | Riteo <riteo@posteo.net> | 2024-01-26 13:53:33 +0100 |
commit | f468e59efdd971712be5fb6972cd21891d867c85 (patch) | |
tree | 05e68061b3a64b2ab4a6ae18ef7f3ba14c78d354 /editor/doc_tools.h | |
parent | 5034478611697358f4e135c69f364ef6d8cd54dc (diff) | |
download | redot-engine-f468e59efdd971712be5fb6972cd21891d867c85.tar.gz |
GDExtension: add an interface for loading extra documentation
Adds two new GDExtension interface methods:
- `editor_help_load_xml_from_utf8_chars`
- `editor_help_load_xml_from_utf8_chars_and_len`
Both of these methods parse the XML passed into an extra documentation
container which, when needed, is merged into the main doc container.
Co-Authored-By: Rémi Verschelde <rverschelde@gmail.com>
Diffstat (limited to 'editor/doc_tools.h')
-rw-r--r-- | editor/doc_tools.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/doc_tools.h b/editor/doc_tools.h index 7f29cc238a..a6910baf28 100644 --- a/editor/doc_tools.h +++ b/editor/doc_tools.h @@ -56,6 +56,7 @@ public: Error _load(Ref<XMLParser> parser); Error load_compressed(const uint8_t *p_data, int p_compressed_size, int p_uncompressed_size); + Error load_xml(const uint8_t *p_data, int p_size); }; #endif // DOC_TOOLS_H |