wireplumber/modules/module-config-endpoint.c

19 lines
456 B
C
Raw Normal View History

2019-12-11 14:50:45 -05:00
/* WirePlumber
*
* Copyright © 2019 Collabora Ltd.
* @author Julian Bouzas <julian.bouzas@collabora.com>
*
* SPDX-License-Identifier: MIT
*/
#include <wp/wp.h>
#include "module-config-endpoint/context.h"
WP_PLUGIN_EXPORT void
2019-12-11 14:50:45 -05:00
wireplumber__module_init (WpModule * module, WpCore * core, GVariant * args)
{
WpConfigEndpointContext *ctx = wp_config_endpoint_context_new (core);
wp_module_set_destroy_callback (module, g_object_unref, ctx);
2019-12-11 14:50:45 -05:00
}