X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_vod.h;h=9b136108f2b844a971087a407f249ed3f5c5cf9b;hb=c60652e38ac6afd74bd8225e9dae5406f13aaa4f;hp=2c9e9516de59f9d63b79933d6d3db1d1d78afec8;hpb=3f615499491f5b6f225e4e856a123f9f7a1dce2f;p=vlc diff --git a/include/vlc_vod.h b/include/vlc_vod.h index 2c9e9516de..9b136108f2 100644 --- a/include/vlc_vod.h +++ b/include/vlc_vod.h @@ -21,12 +21,20 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ -#if !defined( __LIBVLC__ ) - #error You are not libvlc or one of its plugins. You cannot include this file -#endif +#ifndef VLC_VOD_H +#define VLC_VOD_H 1 + +/** + * \file + * This file defines an interface for VOD server modules in vlc + */ -#ifndef _VLC_VOD_H -#define _VLC_VOD_H 1 +/** + * \defgroup vod Video On Demand (VOD) + * \ingroup server + * Video On Demand (VOD) functionality is provided from VLM. + * @{ + */ struct vod_t { @@ -71,4 +79,8 @@ enum vod_query_e VOD_MEDIA_FORWARD, /* arg1= double res= */ }; +/** + * @} + */ + #endif