Commit 16d8baab authored by Rémi Duraffort's avatar Rémi Duraffort

sd: fix compilation (missing file in the previous commit).

parent 3c12dc17
...@@ -73,7 +73,7 @@ enum services_discovery_category_e ...@@ -73,7 +73,7 @@ enum services_discovery_category_e
enum services_discovery_command_e enum services_discovery_command_e
{ {
SD_CMD_SEARCH = 1, /**< arg1 = query */ SD_CMD_SEARCH = 1, /**< arg1 = query */
SD_CMD_CAPABILITIES /**< arg1 = services_discovery_descriptor_t* */ SD_CMD_DESCRIPTOR /**< arg1 = services_discovery_descriptor_t* */
}; };
/** /**
...@@ -120,7 +120,7 @@ VLC_EXPORT( char **, vlc_sd_GetNames, ( vlc_object_t *, char ***, int ** ) LIBVL ...@@ -120,7 +120,7 @@ VLC_EXPORT( char **, vlc_sd_GetNames, ( vlc_object_t *, char ***, int ** ) LIBVL
#define vlc_sd_GetNames(obj, pln, pcat ) \ #define vlc_sd_GetNames(obj, pln, pcat ) \
vlc_sd_GetNames(VLC_OBJECT(obj), pln, pcat) vlc_sd_GetNames(VLC_OBJECT(obj), pln, pcat)
/* Creation of a service_discovery object */ /* Creation of a services_discovery object */
VLC_EXPORT( services_discovery_t *, vlc_sd_Create, ( vlc_object_t *, const char * ) LIBVLC_USED ); VLC_EXPORT( services_discovery_t *, vlc_sd_Create, ( vlc_object_t *, const char * ) LIBVLC_USED );
VLC_EXPORT( bool, vlc_sd_Start, ( services_discovery_t * ) ); VLC_EXPORT( bool, vlc_sd_Start, ( services_discovery_t * ) );
VLC_EXPORT( void, vlc_sd_Stop, ( services_discovery_t * ) ); VLC_EXPORT( void, vlc_sd_Stop, ( services_discovery_t * ) );
......
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