diff --git a/include/call.h b/include/call.h index a46e7f0a8..631553c30 100644 --- a/include/call.h +++ b/include/call.h @@ -668,8 +668,6 @@ struct call_monologue { atomic64 ml_flags; }; -TYPED_GQUEUE(monologues, struct call_monologue) -G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(monologues_q, monologues_q_clear) TYPED_GHASHTABLE(str_ml_ht, str, struct call_monologue, str_hash, str_equal, NULL, NULL) struct sdp_fragment; diff --git a/include/types.h b/include/types.h index 65f46c486..b14a3e853 100644 --- a/include/types.h +++ b/include/types.h @@ -111,4 +111,7 @@ G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(medias_q, medias_q_clear) TYPED_GHASHTABLE(codecs_ht, void, rtp_payload_type, g_direct_hash, g_direct_equal, NULL, NULL) +TYPED_GQUEUE(monologues, struct call_monologue) +G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(monologues_q, monologues_q_clear) + #endif