Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-3.0-or-later
2 : : // SPDX-FileCopyrightText: Andy Holmes <andrew.g.r.holmes@gmail.com>
3 : :
4 : : #include "config.h"
5 : :
6 : : #include <libpeas.h>
7 : : #include <valent.h>
8 : :
9 : : #include "valent-pipewire-mixer.h"
10 : :
11 : :
12 : : G_MODULE_EXPORT void
13 : 0 : valent_pipewire_plugin_register_types (PeasObjectModule *module)
14 : : {
15 : 0 : peas_object_module_register_extension_type (module,
16 : : VALENT_TYPE_MIXER_ADAPTER,
17 : : VALENT_TYPE_PIPEWIRE_MIXER);
18 : 0 : }
|