summaryrefslogtreecommitdiff
path: root/giscanner/annotationparser.py
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2010-09-24 09:57:35 -0300
committerJohan Dahlin <johan@gnome.org>2010-09-24 11:03:52 -0300
commita199218a51da23a4abbbd8e63b4f13aae7ff08c8 (patch)
tree2f91e9b9ee5c6dadac05d18a6787257e405bff0a /giscanner/annotationparser.py
parent4e91e6bd19c0389237c0be68e44afef70d1ccd22 (diff)
downloadgobject-introspection-a199218a51da23a4abbbd8e63b4f13aae7ff08c8.tar.gz
[annotation] Add constants for out options
Diffstat (limited to 'giscanner/annotationparser.py')
-rw-r--r--giscanner/annotationparser.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/giscanner/annotationparser.py b/giscanner/annotationparser.py
index 0e8fca5d..c8a01b84 100644
--- a/giscanner/annotationparser.py
+++ b/giscanner/annotationparser.py
@@ -80,6 +80,10 @@ OPT_ARRAY_FIXED_SIZE = 'fixed-size'
OPT_ARRAY_LENGTH = 'length'
OPT_ARRAY_ZERO_TERMINATED = 'zero-terminated'
+# Out options
+OPT_OUT_CALLER_ALLOCATES = 'caller-allocates'
+OPT_OUT_CALLEE_ALLOCATES = 'callee-allocates'
+
# Scope options
OPT_SCOPE_ASYNC = 'async'
OPT_SCOPE_CALL = 'call'