Changeset aebd6a4333c175bd5cd00ced4b25586be74c3837
- 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
| re29b2a0 |
raebd6a4 |
|
| 123 | 123 | |
|---|
| 124 | 124 | /* Internal types */ |
|---|
| 125 | | typedef struct libvlc_global_data_t libvlc_global_data_t; |
|---|
| 126 | 125 | typedef struct libvlc_int_t libvlc_int_t; |
|---|
| 127 | 126 | typedef struct variable_t variable_t; |
|---|
| r49dd062 |
raebd6a4 |
|
| 99 | 99 | const char *psz_type); |
|---|
| 100 | 100 | |
|---|
| 101 | | /***************************************************************************** |
|---|
| | 101 | /** |
|---|
| 102 | 102 | * 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 | */ |
|---|
| | 108 | typedef struct libvlc_global_data_t |
|---|
| 109 | 109 | { |
|---|
| 110 | 110 | VLC_COMMON_MEMBERS |
|---|
| … | … | |
| 125 | 125 | char * psz_vlcpath; |
|---|
| 126 | 126 | #endif |
|---|
| 127 | | }; |
|---|
| | 127 | } libvlc_global_data_t; |
|---|
| 128 | 128 | |
|---|
| 129 | 129 | |
|---|