1 /*
2  * Copyright (C) 2014 Michal Ratajsky <michal.ratajsky@gmail.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the licence, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
16  */
17 
18 #ifndef MATEMIXER_H
19 #define MATEMIXER_H
20 
21 #include <glib.h>
22 #include <glib-object.h>
23 
24 #include <libmatemixer/matemixer-types.h>
25 
26 #include <libmatemixer/matemixer-app-info.h>
27 #include <libmatemixer/matemixer-context.h>
28 #include <libmatemixer/matemixer-device.h>
29 #include <libmatemixer/matemixer-device-switch.h>
30 #include <libmatemixer/matemixer-enums.h>
31 #include <libmatemixer/matemixer-enum-types.h>
32 #include <libmatemixer/matemixer-stored-control.h>
33 #include <libmatemixer/matemixer-stream.h>
34 #include <libmatemixer/matemixer-stream-control.h>
35 #include <libmatemixer/matemixer-stream-switch.h>
36 #include <libmatemixer/matemixer-stream-toggle.h>
37 #include <libmatemixer/matemixer-switch.h>
38 #include <libmatemixer/matemixer-switch-option.h>
39 #include <libmatemixer/matemixer-version.h>
40 
41 G_BEGIN_DECLS
42 
43 gboolean mate_mixer_init           (void);
44 gboolean mate_mixer_is_initialized (void);
45 
46 G_END_DECLS
47 
48 #endif /* MATEMIXER_H */
49