Changeset 60a6411034db029a61b2c8cdc1d2a201143f2200

Show
Ignore:
Timestamp:
21/02/08 16:09:23 (10 months ago)
Author:
Rémi Duraffort <ivoire@videolan.org>
git-committer:
Rémi Duraffort <ivoire@videolan.org> 1203606563 +0000
git-parent:

[c5f4e7f8fe242dad0ca58c3706b228c63a617da4]

git-author:
Rémi Duraffort <ivoire@videolan.org> 1203606563 +0000
Message:

Comments to make doxygen happy

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/playlist/item.c

    rac05a69 r60a6411  
    505505 
    506506/** 
     507 * Item to node 
     508 * 
    507509 * Transform an item to a node. Return the node in the category tree, or NULL 
    508510 * if not found there 
    509511 * This function must be entered without the playlist lock 
     512 * \param p_playlist the playlist object 
     513 * \param p_item the item to transform 
     514 * \param b_locked TRUE if the playlist is locked 
     515 * \return the item transform in a node 
    510516 */ 
    511517playlist_item_t *playlist_ItemToNode( playlist_t *p_playlist, 
     
    577583} 
    578584 
    579 /** Find an item within a root, given its input id. 
     585/** 
     586 * Find an item within a root, given its input id. 
     587 * 
     588 * \param p_playlist the playlist object 
     589 * \param i_input_id id of the input 
     590 * \param p_root root playlist item 
     591 * \param b_items_only TRUE if we want the item himself 
    580592 * \return the first found item, or NULL if not found 
    581593 */ 
     
    689701} 
    690702 
    691 /** Send a notification that an item has been added to a node */ 
     703/** 
     704 * Send notification 
     705 * 
     706 * Send a notification that an item has been added to a node 
     707 * \param p_playlist the playlist object 
     708 * \param i_item_id id of the item added 
     709 * \param i_node_id id of the node in wich the item was added 
     710 * \param b_signal TRUE if the function must send a signal 
     711 * \return nothing 
     712 */ 
    692713void playlist_SendAddNotify( playlist_t *p_playlist, int i_item_id, 
    693714                             int i_node_id, vlc_bool_t b_signal ) 
    694715{ 
    695716    vlc_value_t val; 
    696     playlist_add_t *p_add = (playlist_add_t *)malloc(sizeof( playlist_add_t)); 
     717    playlist_add_t *p_add = (playlist_add_t *)malloc( sizeof( playlist_add_t) ); 
    697718    p_add->i_item = i_item_id; 
    698719    p_add->i_node = i_node_id; 
     
    709730 *****************************************************************************/ 
    710731 
    711 /** Set the name of a playlist item */ 
     732/** 
     733 * Set the name of a playlist item 
     734 * 
     735 * \param p_item the item 
     736 * \param psz_name the name 
     737 * \return VLC_SUCCESS or VLC_EGENERIC 
     738 */ 
    712739int playlist_ItemSetName( playlist_item_t *p_item, const char *psz_name ) 
    713740{