diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2019-10-26 23:43:08 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2019-10-28 10:28:31 +0100 |
commit | 5dd829174f63a950b528c76f411e2b3ee276b4b6 (patch) | |
tree | e8b84339b2d24c84d5e681abb2fd2894ab35aba5 /libmm-glib/mm-call-audio-format.c | |
parent | 037b774b189b03eea0144899812c0b1f56d5f770 (diff) |
libmm-glib: flag as (skip) all non-API methods
So that the GI scanner ignores them.
Diffstat (limited to 'libmm-glib/mm-call-audio-format.c')
-rw-r--r-- | libmm-glib/mm-call-audio-format.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libmm-glib/mm-call-audio-format.c b/libmm-glib/mm-call-audio-format.c index 221cf85a..54debb67 100644 --- a/libmm-glib/mm-call-audio-format.c +++ b/libmm-glib/mm-call-audio-format.c @@ -64,6 +64,9 @@ mm_call_audio_format_get_encoding (MMCallAudioFormat *self) return self->priv->encoding; } +/** + * mm_call_audio_format_set_encoding: (skip) + */ void mm_call_audio_format_set_encoding (MMCallAudioFormat *self, const gchar *encoding) @@ -96,6 +99,9 @@ mm_call_audio_format_get_resolution (MMCallAudioFormat *self) return self->priv->resolution; } +/** + * mm_call_audio_format_set_resolution: (skip) + */ void mm_call_audio_format_set_resolution (MMCallAudioFormat *self, const gchar *resolution) @@ -127,6 +133,9 @@ mm_call_audio_format_get_rate (MMCallAudioFormat *self) return self->priv->rate; } +/** + * mm_call_audio_format_set_rate: (skip) + */ void mm_call_audio_format_set_rate (MMCallAudioFormat *self, guint rate) @@ -138,6 +147,9 @@ mm_call_audio_format_set_rate (MMCallAudioFormat *self, /*****************************************************************************/ +/** + * mm_call_audio_format_get_dictionary: (skip) + */ GVariant * mm_call_audio_format_get_dictionary (MMCallAudioFormat *self) { @@ -173,6 +185,9 @@ mm_call_audio_format_get_dictionary (MMCallAudioFormat *self) /*****************************************************************************/ +/** + * mm_call_audio_format_new_from_dictionary: (skip) + */ MMCallAudioFormat * mm_call_audio_format_new_from_dictionary (GVariant *dictionary, GError **error) @@ -220,6 +235,9 @@ mm_call_audio_format_new_from_dictionary (GVariant *dictionary, /*****************************************************************************/ +/** + * mm_call_audio_format_new: (skip) + */ MMCallAudioFormat * mm_call_audio_format_new (void) { |