Commit 310ee0ad authored by Rémi Duraffort's avatar Rémi Duraffort

fix doxygen documentation.

parent f589d6ba
...@@ -433,3 +433,5 @@ VLC_PUBLIC_API libvlc_log_message_t *libvlc_log_iterator_next( libvlc_log_iterat ...@@ -433,3 +433,5 @@ VLC_PUBLIC_API libvlc_log_message_t *libvlc_log_iterator_next( libvlc_log_iterat
# endif # endif
#endif /* <vlc/libvlc.h> */ #endif /* <vlc/libvlc.h> */
/** @} */
...@@ -86,7 +86,7 @@ VLC_EXPORT( void, vlc_list_release, ( vlc_list_t * ) ); ...@@ -86,7 +86,7 @@ VLC_EXPORT( void, vlc_list_release, ( vlc_list_t * ) );
VLC_EXPORT( char *, vlc_object_get_name, ( const vlc_object_t * ) ) LIBVLC_USED; VLC_EXPORT( char *, vlc_object_get_name, ( const vlc_object_t * ) ) LIBVLC_USED;
#define vlc_object_get_name(o) vlc_object_get_name(VLC_OBJECT(o)) #define vlc_object_get_name(o) vlc_object_get_name(VLC_OBJECT(o))
/*}@*/ /**}@*/
#define vlc_object_create(a,b) \ #define vlc_object_create(a,b) \
__vlc_object_create( VLC_OBJECT(a), b ) __vlc_object_create( VLC_OBJECT(a), b )
......
...@@ -301,7 +301,7 @@ void Execute( httpd_file_sys_t *p_args, ...@@ -301,7 +301,7 @@ void Execute( httpd_file_sys_t *p_args,
/** /**
* Core stuff * Core stuff
*/ */
/** \struct /** \struct httpd_file_sys_t
* This structure represent a single HTML file to be parsed by the macros * This structure represent a single HTML file to be parsed by the macros
* handling engine */ * handling engine */
struct httpd_file_sys_t struct httpd_file_sys_t
...@@ -321,7 +321,7 @@ struct httpd_file_sys_t ...@@ -321,7 +321,7 @@ struct httpd_file_sys_t
mvar_t *vars; mvar_t *vars;
}; };
/** \struct /** \struct http_association_t
* Structure associating an extension to an external program * Structure associating an extension to an external program
*/ */
typedef struct http_association_t typedef struct http_association_t
...@@ -331,7 +331,7 @@ typedef struct http_association_t ...@@ -331,7 +331,7 @@ typedef struct http_association_t
char **ppsz_argv; char **ppsz_argv;
} http_association_t; } http_association_t;
/** \struct /** \struct httpd_handler_sys_t
* This structure represent a single CGI file to be parsed by the macros * This structure represent a single CGI file to be parsed by the macros
* handling engine */ * handling engine */
struct httpd_handler_sys_t struct httpd_handler_sys_t
...@@ -344,7 +344,7 @@ struct httpd_handler_sys_t ...@@ -344,7 +344,7 @@ struct httpd_handler_sys_t
http_association_t *p_association; http_association_t *p_association;
}; };
/** \struct /** \struct intf_sys_t
* Internal service structure for the HTTP interface * Internal service structure for the HTTP interface
*/ */
struct intf_sys_t struct intf_sys_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