Compare commits
3 Commits
98ebc784c5
...
6974479a9c
Author | SHA1 | Date |
---|---|---|
A Thousand Ships | 6974479a9c | |
A Thousand Ships | d4864d8ba7 | |
A Thousand Ships | 0afc493571 |
File diff suppressed because it is too large
Load Diff
|
@ -2725,6 +2725,31 @@ typedef void (*GDExtensionInterfaceEditorAddPlugin)(GDExtensionConstStringNamePt
|
||||||
*/
|
*/
|
||||||
typedef void (*GDExtensionInterfaceEditorRemovePlugin)(GDExtensionConstStringNamePtr p_class_name);
|
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
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue