26 lines
440 B
C
26 lines
440 B
C
/* WirePlumber
|
|
*
|
|
* Copyright © 2019 Collabora Ltd.
|
|
* @author George Kiagiadakis <george.kiagiadakis@collabora.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
|
|
#ifndef __WP_ERROR_H__
|
|
#define __WP_ERROR_H__
|
|
|
|
#include <glib.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
GQuark wp_domain_library_quark (void);
|
|
#define WP_DOMAIN_LIBRARY (wp_domain_library_quark ())
|
|
|
|
typedef enum {
|
|
WP_LIBRARY_ERROR_INVARIANT,
|
|
} WpLibraryErrorEnum;
|
|
|
|
G_END_DECLS
|
|
|
|
#endif
|