summaryrefslogtreecommitdiff
path: root/girepository/girffi.h
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2010-05-18 18:10:51 -0300
committerJohan Dahlin <johan@gnome.org>2010-05-18 18:11:58 -0300
commit85a6b48602bc3e8e68e1048de375fc32ae825347 (patch)
tree4a29d1f44af2e7c116e8fff1493eb918a4e68f09 /girepository/girffi.h
parent03417f9c6ea66d343a7ebb51d2bb99dcfb2befb4 (diff)
downloadgobject-introspection-85a6b48602bc3e8e68e1048de375fc32ae825347.tar.gz
[girepository] Document most of the structs
Diffstat (limited to 'girepository/girffi.h')
-rw-r--r--girepository/girffi.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/girepository/girffi.h b/girepository/girffi.h
index 54ce7b58..56d85a18 100644
--- a/girepository/girffi.h
+++ b/girepository/girffi.h
@@ -31,12 +31,17 @@ typedef void (*GIFFIClosureCallback) (ffi_cif *,
void **,
void *);
+/**
+ * GIFunctionInvoker:
+ * @cif: the cif
+ * @native_address: the native adress
+ */
typedef struct _GIFunctionInvoker GIFunctionInvoker;
struct _GIFunctionInvoker {
ffi_cif cif;
gpointer native_address;
-
+ /* <private> */
gpointer padding[3];
};