Changeset a4bc2c0db23dd74730ad70c5a7588d0380b1cdb3
- Timestamp:
- 21/02/08 19:46:02
(8 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1203619562 +0000
- git-parent:
[da1291a1a42561d1bc15543dbe9cc00ebcb5a312]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1203619562 +0000
- Message:
Unexport var_OptionParse
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r02752dc |
ra4bc2c0 |
|
| 124 | 124 | VLC_EXPORT( int, __var_Set, ( vlc_object_t *, const char *, vlc_value_t ) ); |
|---|
| 125 | 125 | VLC_EXPORT( int, __var_Get, ( vlc_object_t *, const char *, vlc_value_t * ) ); |
|---|
| 126 | | |
|---|
| 127 | | #define var_OptionParse(a,b) __var_OptionParse( VLC_OBJECT( a ) , b ) |
|---|
| 128 | | VLC_EXPORT( void, __var_OptionParse, ( vlc_object_t *, const char * ) ); |
|---|
| 129 | 126 | |
|---|
| 130 | 127 | #define var_Command(a,b,c,d,e) __var_Command( VLC_OBJECT( a ), b, c, d, e ) |
|---|
| r4505655 |
ra4bc2c0 |
|
| 204 | 204 | vlc_mutex_lock( &p_item->lock ); |
|---|
| 205 | 205 | for( i = 0; i < p_item->i_options; i++ ) |
|---|
| 206 | | var_OptionParse( p_input, p_item->ppsz_options[i] ); |
|---|
| | 206 | var_OptionParse( VLC_OBJECT(p_input), p_item->ppsz_options[i] ); |
|---|
| 207 | 207 | vlc_mutex_unlock( &p_item->lock ); |
|---|
| 208 | 208 | |
|---|
| r99fab90 |
ra4bc2c0 |
|
| 45 | 45 | #include "vlc_interface.h" |
|---|
| 46 | 46 | #include "modules/modules.h" // Gruik! |
|---|
| | 47 | #include "libvlc.h" |
|---|
| 47 | 48 | |
|---|
| 48 | 49 | /***************************************************************************** |
|---|
| … | … | |
| 93 | 94 | |
|---|
| 94 | 95 | for( i = 0 ; i< i_options; i++ ) |
|---|
| 95 | | { |
|---|
| 96 | | var_OptionParse( p_intf, ppsz_options[i] ); |
|---|
| 97 | | } |
|---|
| | 96 | var_OptionParse( p_this, ppsz_options[i] ); |
|---|
| 98 | 97 | |
|---|
| 99 | 98 | /* Choose the best module */ |
|---|
| r689dd88 |
ra4bc2c0 |
|
| 178 | 178 | extern const size_t libvlc_config_count; |
|---|
| 179 | 179 | |
|---|
| | 180 | /* |
|---|
| | 181 | * Variables stuff |
|---|
| | 182 | */ |
|---|
| | 183 | void var_OptionParse (vlc_object_t *, const char *); |
|---|
| | 184 | |
|---|
| 180 | 185 | #endif |
|---|
| r0774c40 |
ra4bc2c0 |
|
| 365 | 365 | __var_Destroy |
|---|
| 366 | 366 | __var_Get |
|---|
| 367 | | __var_OptionParse |
|---|
| 368 | 367 | __var_Set |
|---|
| 369 | 368 | __var_TriggerCallback |
|---|