diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-14 19:12:02 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-14 19:12:02 +0100 |
commit | 0068320ff13fd91d16f3a2bdcf7956cd439c2869 (patch) | |
tree | 8352748c86efc74e5e5323703b1c05842db6853b /gdextension/gdextension_interface.h | |
parent | 8a3faaa64924d99b23fc65de7a27d26079afec65 (diff) | |
download | redot-cpp-0068320ff13fd91d16f3a2bdcf7956cd439c2869.tar.gz |
gdextension: Sync with upstream commit d2699dc7ab96fbd75faccc1f32f55baebf1d84dc (4.0-rc2)
Diffstat (limited to 'gdextension/gdextension_interface.h')
-rw-r--r-- | gdextension/gdextension_interface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdextension/gdextension_interface.h b/gdextension/gdextension_interface.h index 3865b15..f323b2a 100644 --- a/gdextension/gdextension_interface.h +++ b/gdextension/gdextension_interface.h @@ -554,7 +554,7 @@ typedef struct { GDExtensionVariantPtr (*array_operator_index)(GDExtensionTypePtr p_self, GDExtensionInt p_index); // p_self should be an Array ptr GDExtensionVariantPtr (*array_operator_index_const)(GDExtensionConstTypePtr p_self, GDExtensionInt p_index); // p_self should be an Array ptr void (*array_ref)(GDExtensionTypePtr p_self, GDExtensionConstTypePtr p_from); // p_self should be an Array ptr - void (*array_set_typed)(GDExtensionTypePtr p_self, uint32_t p_type, GDExtensionConstStringNamePtr p_class_name, GDExtensionConstVariantPtr p_script); // p_self should be an Array ptr + void (*array_set_typed)(GDExtensionTypePtr p_self, GDExtensionVariantType p_type, GDExtensionConstStringNamePtr p_class_name, GDExtensionConstVariantPtr p_script); // p_self should be an Array ptr /* Dictionary functions */ |