2019-12-03 08:49:05 -05:00
|
|
|
|
/* WirePlumber
|
|
|
|
|
|
*
|
|
|
|
|
|
* Copyright © 2019 Collabora Ltd.
|
|
|
|
|
|
* @author Julian Bouzas <julian.bouzas@collabora.com>
|
|
|
|
|
|
*
|
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <wp/wp.h>
|
|
|
|
|
|
|
2020-05-12 09:58:23 -04:00
|
|
|
|
#include "module-config-policy/context.h"
|
2019-12-03 08:49:05 -05:00
|
|
|
|
|
2020-01-16 18:50:07 +02:00
|
|
|
|
WP_PLUGIN_EXPORT void
|
2019-12-03 08:49:05 -05:00
|
|
|
|
wireplumber__module_init (WpModule * module, WpCore * core, GVariant * args)
|
|
|
|
|
|
{
|
2020-05-12 14:29:09 -04:00
|
|
|
|
WpConfigPolicyContext *ctx = wp_config_policy_context_new (module);
|
|
|
|
|
|
wp_plugin_register (WP_PLUGIN (ctx));
|
2019-12-03 08:49:05 -05:00
|
|
|
|
}
|