blob: 936a6b6ebd5a5816a20bb405294a7059fa2a6b71 [file] [log] [blame]
Stepan Salenikovichd81ef292015-02-17 18:47:37 -05001/*
Guillaume Roguez77c579d2018-01-30 15:54:02 -05002 * Copyright (C) 2013-2018 Savoir-faire Linux Inc.
Stepan Salenikovichd81ef292015-02-17 18:47:37 -05003 * Author: Tristan Matthews <tristan.matthews@savoirfairelinux.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Stepan Salenikovichd81ef292015-02-17 18:47:37 -050018 */
19
20#ifndef RING_CLIENT_OPTIONS_H_
21#define RING_CLIENT_OPTIONS_H_
22
Stepan Salenikovich0d515e52015-05-19 16:31:05 -040023#include <gio/gio.h>
Stepan Salenikovichd81ef292015-02-17 18:47:37 -050024
Stepan Salenikovich434b88f2015-02-19 17:49:08 -050025G_BEGIN_DECLS
Stepan Salenikovichd81ef292015-02-17 18:47:37 -050026
Stepan Salenikovich0d515e52015-05-19 16:31:05 -040027#if GLIB_CHECK_VERSION(2,40,0)
28void ring_client_add_options(GApplication *app);
29#else
Stepan Salenikovichd81ef292015-02-17 18:47:37 -050030GOptionContext *ring_client_options_get_context(void);
Stepan Salenikovich0d515e52015-05-19 16:31:05 -040031#endif
Stepan Salenikovichd81ef292015-02-17 18:47:37 -050032
Stepan Salenikovich434b88f2015-02-19 17:49:08 -050033G_END_DECLS
Stepan Salenikovichd81ef292015-02-17 18:47:37 -050034
35#endif /* RING_CLIENT_OPTIONS_H_ */