Changeset 2252bf6341e6a231d8a87d6e7b830625bc3b5204
- Timestamp:
- 19/05/07 20:27:16
(2 years ago)
- Author:
- Filippo Carone <littlejohn@videolan.org>
- git-committer:
- Filippo Carone <littlejohn@videolan.org> 1179599236 +0000
- git-parent:
[ed3c1eb16a1496b6b6ece35dff6c191726ff5a6f]
- git-author:
- Filippo Carone <littlejohn@videolan.org> 1179599236 +0000
- Message:
user data pointer added to callback structure
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r3b41ca7 |
r2252bf6 |
|
| 52 | 52 | libvlc_callback_t callback; |
|---|
| 53 | 53 | libvlc_event_type_t eventType; |
|---|
| | 54 | void *p_user_data; |
|---|
| 54 | 55 | }; |
|---|
| 55 | 56 | |
|---|
| … | … | |
| 67 | 68 | int b_playlist_locked; |
|---|
| 68 | 69 | vlc_mutex_t instance_lock; |
|---|
| 69 | | struct libvlc_callback_entry_list_t * p_callback_list; |
|---|
| | 70 | struct libvlc_callback_entry_list_t *p_callback_list; |
|---|
| 70 | 71 | }; |
|---|
| 71 | 72 | |
|---|