Changeset aebd6a4333c175bd5cd00ced4b25586be74c3837

Show
Ignore:
Timestamp:
05/04/08 18:48:59 (3 months ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1209919739 +0300
git-parent:

[49dd062d2e4f097d3af73e0478476f7c39db1cf5]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1209919739 +0300
Message:

libvlc_global_data_t: fix description

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • include/vlc_common.h

    re29b2a0 raebd6a4  
    123123 
    124124/* Internal types */ 
    125 typedef struct libvlc_global_data_t libvlc_global_data_t; 
    126125typedef struct libvlc_int_t libvlc_int_t; 
    127126typedef struct variable_t variable_t; 
  • src/libvlc.h

    r49dd062 raebd6a4  
    9999                   const char *psz_type); 
    100100 
    101 /***************************************************************************** 
     101/** 
    102102 * libvlc_global_data_t (global variable) 
    103  ***************************************************************************** 
    104  * This structure has an unique instance, statically allocated in main and 
    105  * never accessed from the outside. It stores once-initialized data such as 
    106  * the CPU capabilities or the global lock
    107  *****************************************************************************
    108 struct libvlc_global_data_t 
     103 * 
     104 * This structure has an unique instance, statically allocated in libvlc and 
     105 * never accessed from the outside. It stores process-wide VLC variables, 
     106 * mostly process-wide locks, and (currently) the module bank and objects tree
     107 *
     108typedef struct libvlc_global_data_t 
    109109{ 
    110110    VLC_COMMON_MEMBERS 
     
    125125    char *                 psz_vlcpath; 
    126126#endif 
    127 }
     127} libvlc_global_data_t
    128128 
    129129