Commit 815ec591 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

libvlc: nsobject is void *.

parent 5b5a735b
...@@ -191,7 +191,7 @@ VLC_PUBLIC_API void libvlc_media_player_set_nsobject ( libvlc_media_player_t *p_ ...@@ -191,7 +191,7 @@ VLC_PUBLIC_API void libvlc_media_player_set_nsobject ( libvlc_media_player_t *p_
* *
* \return the agl handler or 0 if none where set * \return the agl handler or 0 if none where set
*/ */
VLC_PUBLIC_API uint32_t libvlc_media_player_get_nsobject ( libvlc_media_player_t *p_mi ); VLC_PUBLIC_API void * libvlc_media_player_get_nsobject ( libvlc_media_player_t *p_mi );
/** /**
* Set the agl handler where the media player should render its video output. * Set the agl handler where the media player should render its video output.
......
...@@ -686,7 +686,7 @@ void libvlc_media_player_set_nsobject( libvlc_media_player_t *p_mi, ...@@ -686,7 +686,7 @@ void libvlc_media_player_set_nsobject( libvlc_media_player_t *p_mi,
/************************************************************************** /**************************************************************************
* get_nsobject * get_nsobject
**************************************************************************/ **************************************************************************/
uint32_t libvlc_media_player_get_nsobject( libvlc_media_player_t *p_mi ) void * libvlc_media_player_get_nsobject( libvlc_media_player_t *p_mi )
{ {
return p_mi->drawable.nsobject; return p_mi->drawable.nsobject;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment