docs: remove dummy function declarations with G_INLINE_FUNC for gtk-doc

gtk-doc can handle static inline functions just fine these days,
there's no need for this stuff any more.
This commit is contained in:
Tim-Philipp Müller 2016-01-03 17:26:31 +00:00
parent 924f914172
commit bec94861b0
3 changed files with 0 additions and 25 deletions

View file

@ -52,10 +52,6 @@ struct _GstRTSPPermissions {
*
* Returns: (transfer full): @permissions (for convenience when doing assignments)
*/
#ifdef _FOOL_GTK_DOC_
G_INLINE_FUNC GstRTSPPermissions * gst_rtsp_permissions_ref (GstRTSPPermissions * permissions);
#endif
static inline GstRTSPPermissions *
gst_rtsp_permissions_ref (GstRTSPPermissions * permissions)
{
@ -68,10 +64,6 @@ gst_rtsp_permissions_ref (GstRTSPPermissions * permissions)
*
* Decrease the refcount of an permissions, freeing it if the refcount reaches 0.
*/
#ifdef _FOOL_GTK_DOC_
G_INLINE_FUNC void gst_rtsp_permissions_unref (GstRTSPPermissions * permissions);
#endif
static inline void
gst_rtsp_permissions_unref (GstRTSPPermissions * permissions)
{

View file

@ -90,10 +90,6 @@ void gst_rtsp_thread_stop (GstRTSPThread * thread);
*
* Returns: (transfer full): @thread (for convenience when doing assignments)
*/
#ifdef _FOOL_GTK_DOC_
G_INLINE_FUNC GstRTSPThread * gst_rtsp_thread_ref (GstRTSPThread * thread);
#endif
static inline GstRTSPThread *
gst_rtsp_thread_ref (GstRTSPThread * thread)
{
@ -106,11 +102,6 @@ gst_rtsp_thread_ref (GstRTSPThread * thread)
*
* Decrease the refcount of an thread, freeing it if the refcount reaches 0.
*/
#ifdef _FOOL_GTK_DOC_
G_INLINE_FUNC void gst_rtsp_thread_unref (GstRTSPPermissions * thread);
#endif
static inline void
gst_rtsp_thread_unref (GstRTSPThread * thread)
{

View file

@ -54,10 +54,6 @@ struct _GstRTSPToken {
*
* Returns: (transfer full): @token (for convenience when doing assignments)
*/
#ifdef _FOOL_GTK_DOC_
G_INLINE_FUNC GstRTSPToken * gst_rtsp_token_ref (GstRTSPToken * token);
#endif
static inline GstRTSPToken *
gst_rtsp_token_ref (GstRTSPToken * token)
{
@ -70,10 +66,6 @@ gst_rtsp_token_ref (GstRTSPToken * token)
*
* Decrease the refcount of an token, freeing it if the refcount reaches 0.
*/
#ifdef _FOOL_GTK_DOC_
G_INLINE_FUNC void gst_rtsp_token_unref (GstRTSPToken * token);
#endif
static inline void
gst_rtsp_token_unref (GstRTSPToken * token)
{