Compare commits

..

4 Commits

Author SHA1 Message Date
A Thousand Ships a3e1c38fbf
Merge 98ebc784c5 into 36847f6af0 2024-01-30 16:02:39 +00:00
A Thousand Ships 98ebc784c5
[Temporary] Redirected artifact checkout to allow testing 2024-01-30 17:02:04 +01:00
A Thousand Ships e449b14c68
Optional ScriptInstance extension 2024-01-30 17:02:04 +01:00
A Thousand Ships a507d535f9
Add support for getting argument count from `Callable`s 2024-01-30 17:01:37 +01:00
2 changed files with 144 additions and 3831 deletions

File diff suppressed because it is too large Load Diff

View File

@ -2725,31 +2725,6 @@ typedef void (*GDExtensionInterfaceEditorAddPlugin)(GDExtensionConstStringNamePt
*/
typedef void (*GDExtensionInterfaceEditorRemovePlugin)(GDExtensionConstStringNamePtr p_class_name);
/**
* @name editor_help_load_xml_from_utf8_chars
* @since 4.3
*
* Loads new XML-formatted documentation data in the editor.
*
* The provided pointer can be immediately freed once the function returns.
*
* @param p_data A pointer to an UTF-8 encoded C string (null terminated).
*/
typedef void (*GDExtensionsInterfaceEditorHelpLoadXmlFromUtf8Chars)(const char *p_data);
/**
* @name editor_help_load_xml_from_utf8_chars_and_len
* @since 4.3
*
* Loads new XML-formatted documentation data in the editor.
*
* The provided pointer can be immediately freed once the function returns.
*
* @param p_data A pointer to an UTF-8 encoded C string.
* @param p_size The number of bytes (not code units).
*/
typedef void (*GDExtensionsInterfaceEditorHelpLoadXmlFromUtf8CharsAndLen)(const char *p_data, GDExtensionInt p_size);
#ifdef __cplusplus
}
#endif