doc: Fix hotdoc warnings
[platform/upstream/gstreamer.git] / gst / gstquery.h
index d19291e..996e790 100644 (file)
@@ -244,12 +244,13 @@ gst_query_ref (GstQuery * q)
 }
 
 /**
- * gst_query_unref:
+ * gst_query_unref: (skip)
  * @q: a #GstQuery to decrease the refcount of.
  *
  * Decreases the refcount of the query. If the refcount reaches 0, the query
  * will be freed.
  */
+static inline void gst_query_unref(GstQuery* q);
 static inline void
 gst_query_unref (GstQuery * q)
 {
@@ -277,7 +278,7 @@ gst_clear_query (GstQuery ** query_ptr)
 
 /* copy query */
 /**
- * gst_query_copy:
+ * gst_query_copy: (skip)
  * @q: a #GstQuery to copy.
  *
  * Copies the given query using the copy function of the parent #GstStructure.
@@ -286,6 +287,7 @@ gst_clear_query (GstQuery ** query_ptr)
  *
  * Returns: (transfer full): a new copy of @q.
  */
+static inline GstQuery* gst_query_copy(const GstQuery* q);
 static inline GstQuery *
 gst_query_copy (const GstQuery * q)
 {
@@ -309,7 +311,7 @@ gst_query_copy (const GstQuery * q)
  */
 #define         gst_query_make_writable(q)      GST_QUERY_CAST (gst_mini_object_make_writable (GST_MINI_OBJECT_CAST (q)))
 /**
- * gst_query_replace:
+ * gst_query_replace: (skip)
  * @old_query: (inout) (transfer full) (nullable): pointer to a pointer to a
  *     #GstQuery to be replaced.
  * @new_query: (allow-none) (transfer none): pointer to a #GstQuery that will
@@ -324,6 +326,7 @@ gst_query_copy (const GstQuery * q)
  *
  * Returns: %TRUE if @new_query was different from @old_query
  */
+static inline gboolean gst_query_replace(GstQuery** old_query, GstQuery* new_query);
 static inline gboolean
 gst_query_replace (GstQuery **old_query, GstQuery *new_query)
 {