mirror of
https://gitlab.freedesktop.org/pipewire/wireplumber.git
synced 2025-12-20 07:40:03 +01:00
24 lines
532 B
C
24 lines
532 B
C
|
|
/* WirePlumber
|
||
|
|
*
|
||
|
|
* Copyright © 2023 Collabora Ltd.
|
||
|
|
* @author George Kiagiadakis <george.kiagiadakis@collabora.com>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef __WIREPLUMBER_INTERNAL_COMP_LOADER_H__
|
||
|
|
#define __WIREPLUMBER_INTERNAL_COMP_LOADER_H__
|
||
|
|
|
||
|
|
#include "component-loader.h"
|
||
|
|
|
||
|
|
G_BEGIN_DECLS
|
||
|
|
|
||
|
|
#define WP_TYPE_INTERNAL_COMP_LOADER (wp_internal_comp_loader_get_type ())
|
||
|
|
WP_API
|
||
|
|
G_DECLARE_FINAL_TYPE (WpInternalCompLoader, wp_internal_comp_loader,
|
||
|
|
WP, INTERNAL_COMP_LOADER, GObject)
|
||
|
|
|
||
|
|
G_END_DECLS
|
||
|
|
|
||
|
|
#endif
|