]> git.sesse.net Git - vlc/commitdiff
fix doxygen documentation.
authorRémi Duraffort <ivoire@videolan.org>
Tue, 8 Dec 2009 09:33:32 +0000 (10:33 +0100)
committerRémi Duraffort <ivoire@videolan.org>
Tue, 8 Dec 2009 10:03:50 +0000 (11:03 +0100)
include/vlc/libvlc.h
include/vlc_objects.h
modules/control/http/http.h

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