Fix signature of GB.GetProperty() API.

[INTERPRETER]
* BUG: Fix signature of GB.GetProperty() API.
This commit is contained in:
gambas 2021-10-27 18:39:30 +02:00
parent 3cf4f3a21e
commit c1d255d35c

View file

@ -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);