[MPlayer-cvslog] r34771 - trunk/gui/util/list.c

ib subversion at mplayerhq.hu
Thu Feb 23 14:48:58 CET 2012


Author: ib
Date: Thu Feb 23 14:48:58 2012
New Revision: 34771

Log:
Add doxygen comments to list.c.

Modified:
   trunk/gui/util/list.c

Modified: trunk/gui/util/list.c
==============================================================================
--- trunk/gui/util/list.c	Thu Feb 23 14:30:16 2012	(r34770)
+++ trunk/gui/util/list.c	Thu Feb 23 14:48:58 2012	(r34771)
@@ -16,6 +16,11 @@
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
+/**
+ * @file
+ * @brief List management
+ */
+
 #include <stdlib.h>
 #include <string.h>
 
@@ -27,6 +32,17 @@ static plItem *plCurrent;
 
 static urlItem *urlList;
 
+/**
+ * @brief Manage playlists and URL lists.
+ *
+ * @param cmd task to be performed
+ * @param data list item for the task
+ *
+ * @return pointer to top of list (GET command),
+ *         pointer to current list item (ITEM command) or
+ *         NULL (DELETE or unknown command)
+ *
+ */
 void *listMgr(int cmd, void *data)
 {
     plItem *pdat  = (plItem *)data;


More information about the MPlayer-cvslog mailing list