diff options
author | Gian Mario Tagliaretti <gianmt@src.gnome.org> | 2008-07-29 21:29:25 +0000 |
---|---|---|
committer | Gian Mario Tagliaretti <gianmt@src.gnome.org> | 2008-07-29 21:29:25 +0000 |
commit | 4a8c6c88a38e1b99b22ecc675ca70e752326a3a9 (patch) | |
tree | 52f7cac7b26928e43a697b7bc126674a31c187f0 /gio/pygio-utils.h | |
parent | b569c69f5759188e674e4808a52b7d2dd633306e (diff) | |
download | pygobject-4a8c6c88a38e1b99b22ecc675ca70e752326a3a9.tar.gz pygobject-4a8c6c88a38e1b99b22ecc675ca70e752326a3a9.tar.xz pygobject-4a8c6c88a38e1b99b22ecc675ca70e752326a3a9.zip |
Wrap g_app_info_launch_uris, g_app_info_launch, g_app_launch_context_get_display and g_app_launch_context_get_startup_notify_id
svn path=/trunk/; revision=898
Diffstat (limited to 'gio/pygio-utils.h')
-rw-r--r-- | gio/pygio-utils.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gio/pygio-utils.h b/gio/pygio-utils.h index 02645ba..4836e59 100644 --- a/gio/pygio-utils.h +++ b/gio/pygio-utils.h @@ -29,8 +29,17 @@ #include <gio/gio.h> extern PyTypeObject PyGCancellable_Type; +extern PyTypeObject PyGAppLaunchContext_Type; +extern PyTypeObject PyGFile_Type; gboolean pygio_check_cancellable(PyGObject *pycancellable, GCancellable **cancellable); +gboolean pygio_check_launch_context(PyGObject *pycontext, + GAppLaunchContext **context); + +GList* pygio_pylist_to_gfile_glist(PyObject *pycontext); + +GList* pygio_pylist_to_uri_glist(PyObject *pycontext); + #endif /* __PYGIO_UTILS_H__ */ |