diff options
Diffstat (limited to 'gi/pygi-invoke-state-struct.h')
-rw-r--r-- | gi/pygi-invoke-state-struct.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gi/pygi-invoke-state-struct.h b/gi/pygi-invoke-state-struct.h index f5a3d3e..1d9e49c 100644 --- a/gi/pygi-invoke-state-struct.h +++ b/gi/pygi-invoke-state-struct.h @@ -18,6 +18,10 @@ typedef struct _PyGIInvokeState GIArgument **args; GIArgument *in_args; + /* Generic array allocated to the same length as args + * for use as extra per-arg state data. */ + gpointer *args_data; + /* Out args and out values * In order to pass a parameter and get something back out in C * we need to pass a pointer to the value, e.g. |