X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_vout_window.h;h=b722d4b89fa9de8389fd49da15bdff284d413a76;hb=1d14535e831200fab8cbc1d783b94079f10772d1;hp=31a538444573ef423b59eaa00d2412caf223de6e;hpb=8e9eb2df5359ecde84cee2724899346064ee07e3;p=vlc diff --git a/include/vlc_vout_window.h b/include/vlc_vout_window.h index 31a5384445..b722d4b89f 100644 --- a/include/vlc_vout_window.h +++ b/include/vlc_vout_window.h @@ -121,14 +121,14 @@ struct vout_window_t { / vout_display_NewWindow() and vout_display_DeleteWindow() instead. * This enables recycling windows. */ -VLC_EXPORT( vout_window_t *, vout_window_New, (vlc_object_t *, const char *module, const vout_window_cfg_t *) ); +VLC_API vout_window_t * vout_window_New(vlc_object_t *, const char *module, const vout_window_cfg_t *); /** * Deletes a window created by vout_window_New(). * * @note See vout_window_New() about window recycling. */ -VLC_EXPORT( void, vout_window_Delete, (vout_window_t *) ); +VLC_API void vout_window_Delete(vout_window_t *); /** @@ -138,7 +138,7 @@ VLC_EXPORT( void, vout_window_Delete, (vout_window_t *) ); * * @warning The caller must own the window, as vout_window_t is not thread safe. */ -VLC_EXPORT( int, vout_window_Control, (vout_window_t *, int query, ...) ); +VLC_API int vout_window_Control(vout_window_t *, int query, ...); /** * Configures the window manager state for this window.