From c1d255d35ce63cc998eef507bd69fa25be2c71df Mon Sep 17 00:00:00 2001 From: gambas Date: Wed, 27 Oct 2021 18:39:30 +0200 Subject: [PATCH] Fix signature of GB.GetProperty() API. [INTERPRETER] * BUG: Fix signature of GB.GetProperty() API. --- main/share/gambas.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/share/gambas.h b/main/share/gambas.h index 319727390..a51fd2731 100644 --- a/main/share/gambas.h +++ b/main/share/gambas.h @@ -980,7 +980,7 @@ typedef bool (*GetFunction)(GB_FUNCTION *, void *, const char *, const char *, const char *); GB_VALUE *(*Call)(GB_FUNCTION *, int, int); void *(*GetClassInterface)(GB_CLASS, const char *); - void *(*GetProperty)(void *, const char *); + GB_VALUE *(*GetProperty)(void *, const char *); bool (*SetProperty)(void *, const char *, GB_VALUE *value); bool (*Serialize)(const char *path, GB_VALUE *value); bool (*UnSerialize)(const char *path, GB_VALUE *value);