diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2017-09-29 10:08:39 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2017-09-29 10:09:42 +0900 |
commit | c6875c46d7e474c02f61c33aa892dfad4515a141 (patch) | |
tree | e55d39f1d039923729d3637625b5597bce01dd49 /gio/gopenuriportal.h | |
parent | f122b92e1d3554504ac749da8e1398208a071648 (diff) | |
download | glib-c6875c46d7e474c02f61c33aa892dfad4515a141.tar.gz glib-c6875c46d7e474c02f61c33aa892dfad4515a141.tar.bz2 glib-c6875c46d7e474c02f61c33aa892dfad4515a141.zip |
Imported Upstream version 2.53.3
Change-Id: I620ef00381ff01f0dd7c6d644b3c0a88e29aaedb
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
Diffstat (limited to 'gio/gopenuriportal.h')
-rw-r--r-- | gio/gopenuriportal.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/gio/gopenuriportal.h b/gio/gopenuriportal.h new file mode 100644 index 000000000..00863ef90 --- /dev/null +++ b/gio/gopenuriportal.h @@ -0,0 +1,41 @@ +/* GIO - GLib Input, Output and Streaming Library + * + * Copyright 2017 Red Hat, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef __G_OPEN_URI_PORTAL_H__ + +#include <glib.h> +#include <gio/gio.h> + +G_BEGIN_DECLS + +gboolean g_openuri_portal_open_uri (const char *uri, + const char *parent_window, + GError **error); + +void g_openuri_portal_open_uri_async (const char *uri, + const char *parent_window, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); + +gboolean g_openuri_portal_open_uri_finish (GAsyncResult *result, + GError **error); + +G_END_DECLS + +#endif |