2020-01-07 13:18:02 -05:00
|
|
|
/* WirePlumber
|
|
|
|
|
*
|
|
|
|
|
* Copyright © 2019 Collabora Ltd.
|
|
|
|
|
* @author Julian Bouzas <julian.bouzas@collabora.com>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <wp/wp.h>
|
|
|
|
|
|
2020-06-02 09:54:06 -04:00
|
|
|
#include "module-config-static-objects/context.h"
|
2020-01-07 13:18:02 -05:00
|
|
|
|
2020-01-16 18:50:07 +02:00
|
|
|
WP_PLUGIN_EXPORT void
|
2020-01-07 13:18:02 -05:00
|
|
|
wireplumber__module_init (WpModule * module, WpCore * core, GVariant * args)
|
|
|
|
|
{
|
2020-06-02 09:54:06 -04:00
|
|
|
WpConfigStaticObjectsContext *ctx = wp_config_static_objects_context_new (module);
|
2020-05-12 15:17:07 -04:00
|
|
|
wp_plugin_register (WP_PLUGIN (ctx));
|
2020-01-07 13:18:02 -05:00
|
|
|
}
|