Changeset 49dd062d2e4f097d3af73e0478476f7c39db1cf5
- Timestamp:
- 04/05/08 18:40:22
(7 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1209919222 +0300
- git-parent:
[9c87bdf6b71f43aa5d2667d5cc9e483e9b6bddea]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1209919222 +0300
- Message:
p_root->p_probe: unused, remove
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r9c87bdf |
r49dd062 |
|
| 116 | 116 | |
|---|
| 117 | 117 | module_bank_t * p_module_bank; ///< The module bank |
|---|
| 118 | | intf_thread_t *p_probe; ///< Devices prober |
|---|
| 119 | 118 | |
|---|
| 120 | 119 | /* Arch-specific variables */ |
|---|
| r449fd28 |
r49dd062 |
|
| 35 | 35 | #include <vlc_devices.h> |
|---|
| 36 | 36 | |
|---|
| | 37 | static intf_thread_t *p_probe_thread = NULL; |
|---|
| | 38 | |
|---|
| 37 | 39 | void devices_ProbeCreate( vlc_object_t *p_this ) |
|---|
| 38 | 40 | { |
|---|
| 39 | 41 | intf_thread_t * p_probe; |
|---|
| 40 | | p_this->p_libvlc_global->p_probe = NULL; |
|---|
| 41 | 42 | |
|---|
| 42 | 43 | /* Allocate structure */ |
|---|
| … | … | |
| 55 | 56 | } |
|---|
| 56 | 57 | |
|---|
| 57 | | p_this->p_libvlc_global->p_probe = p_probe; |
|---|
| | 58 | p_probe_thread = p_probe; |
|---|
| 58 | 59 | } |
|---|
| 59 | 60 | |
|---|