From da2f2f64a67b9aa9bd8ef73f7a9940acc739fbb1 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Mon, 19 May 2025 16:37:56 +0200 Subject: lib: move enum definitions --- lib/src/turns-participant.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/src/turns-participant.h') diff --git a/lib/src/turns-participant.h b/lib/src/turns-participant.h index f951ddb..7f5ff7b 100644 --- a/lib/src/turns-participant.h +++ b/lib/src/turns-participant.h @@ -1,8 +1,6 @@ #ifndef TURNS_PARTICIPANT_H #define TURNS_PARTICIPANT_H -#include "turns-enums.h" // IWYU pragma: export - #include #include #include @@ -17,6 +15,9 @@ typedef enum TURNS_PARTICIPANT_DISPOSITION_SECRET, } TurnsParticipantDisposition; +GType turns_participant_disposition_get_type(void) G_GNUC_CONST; +#define TURNS_TYPE_PARTICIPANT_DISPOSITION (turns_participant_disposition_get_type()) + #define TURNS_TYPE_PARTICIPANT turns_participant_get_type() G_DECLARE_FINAL_TYPE(TurnsParticipant, turns_participant, TURNS, PARTICIPANT, GObject) -- cgit v1.2.3