Changeset 6c790747f3847ae2c88a03d6a053968143ad76e6
- Timestamp:
- 06/21/08 10:58:40
(2 months ago)
- Author:
- Rémi Denis-Courmont <rdenis@simphalempin.com>
- git-committer:
- Rémi Denis-Courmont <rdenis@simphalempin.com> 1214038720 +0300
- git-parent:
[5277e0fe73d6dd16254017ce83c005d72a9fc33d]
- git-author:
- Rémi Denis-Courmont <rdenis@simphalempin.com> 1214038720 +0300
- Message:
Remove VLC_OBJECT_INTERACTION
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| ra123885 |
r6c79074 |
|
| 48 | 48 | #define VLC_OBJECT_FILTER (-22) |
|---|
| 49 | 49 | #define VLC_OBJECT_OSDMENU (-28) |
|---|
| 50 | | #define VLC_OBJECT_INTERACTION (-32) |
|---|
| 51 | 50 | /* Please add new object types below -34 */ |
|---|
| 52 | 51 | /* Please do not add new object types anyway */ |
|---|
| ra123885 |
r6c79074 |
|
| 104 | 104 | { VLC_OBJECT_FILTER, "filter" }, |
|---|
| 105 | 105 | { VLC_OBJECT_OSDMENU, "osdmenu" }, |
|---|
| 106 | | { VLC_OBJECT_INTERACTION, "interaction" }, |
|---|
| 107 | 106 | { VLC_OBJECT_GENERIC, "generic" }, |
|---|
| 108 | 107 | { 0, "" } }; |
|---|
| re21ba63 |
r6c79074 |
|
| 270 | 270 | i_size = sizeof( announce_handler_t ); |
|---|
| 271 | 271 | psz_type = "announce"; |
|---|
| 272 | | break; |
|---|
| 273 | | case VLC_OBJECT_INTERACTION: |
|---|
| 274 | | i_size = sizeof( interaction_t ); |
|---|
| 275 | | psz_type = "interaction"; |
|---|
| 276 | 272 | break; |
|---|
| 277 | 273 | default: |
|---|