aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorRob Taylor <rob.taylor@codethink.co.uk>2009-03-10 15:08:10 +0000
committerRob Taylor <rob.taylor@codethink.co.uk>2009-03-10 15:08:10 +0000
commit6eeb67c85cce0bbf3ebae083594c80acc66baccb (patch)
tree19c731b1c4cce19366b9e042efb3bbbdf0ac8b9d /python
parentd46f7dbd3452d43e6e573ae4dfb35ea16fba6f57 (diff)
Add string support to context-provider interface. Try to test..
Diffstat (limited to 'python')
-rw-r--r--python/ContextProvider.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/python/ContextProvider.py b/python/ContextProvider.py
index c8db426e..0a460465 100644
--- a/python/ContextProvider.py
+++ b/python/ContextProvider.py
@@ -52,6 +52,10 @@ class ContextProvider:
('change_set', CHANGE_SET, 1),
('key', c_char_p, 1),
('val', c_int, 1))
+ change_set_add_string = cfunc('context_provider_change_set_add_string', _dll, c_int,
+ ('change_set', CHANGE_SET, 1),
+ ('key', c_char_p, 1),
+ ('val', c_char_p, 1))
change_set_add_undetermined_key = cfunc('context_provider_change_set_add_undetermined_key', _dll, c_int,
('change_set', CHANGE_SET, 1),
('key', c_char_p, 1))