Moved spu_Attach definition to the core.

This commit is contained in:
Laurent Aimar 2010-05-21 20:31:27 +02:00
parent 7e7f8be16b
commit 37a27cc644
2 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,6 @@ struct spu_t
VLC_EXPORT( spu_t *, spu_Create, ( vlc_object_t * ) );
#define spu_Create(a) spu_Create(VLC_OBJECT(a))
VLC_EXPORT( void, spu_Destroy, ( spu_t * ) );
void spu_Attach( spu_t *, vlc_object_t *, bool );
/**
* This function sends a subpicture to the spu_t core.

View File

@ -153,6 +153,7 @@ void vout_DisplayWrapper(vout_thread_t *, picture_t *);
/* */
int spu_ProcessMouse(spu_t *, const vlc_mouse_t *, const video_format_t *);
void spu_Attach( spu_t *, vlc_object_t *, bool );
#endif