Changeset 6c790747f3847ae2c88a03d6a053968143ad76e6

Show
Ignore:
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
  • include/vlc_objects.h

    ra123885 r6c79074  
    4848#define VLC_OBJECT_FILTER      (-22) 
    4949#define VLC_OBJECT_OSDMENU     (-28) 
    50 #define VLC_OBJECT_INTERACTION (-32) 
    5150/* Please add new object types below -34 */ 
    5251/* Please do not add new object types anyway */ 
  • modules/misc/lua/libs/objects.c

    ra123885 r6c79074  
    104104          { VLC_OBJECT_FILTER, "filter" }, 
    105105          { VLC_OBJECT_OSDMENU, "osdmenu" }, 
    106           { VLC_OBJECT_INTERACTION, "interaction" }, 
    107106          { VLC_OBJECT_GENERIC, "generic" }, 
    108107          { 0, "" } }; 
  • src/misc/objects.c

    re21ba63 r6c79074  
    270270            i_size = sizeof( announce_handler_t ); 
    271271            psz_type = "announce"; 
    272             break; 
    273         case VLC_OBJECT_INTERACTION: 
    274             i_size = sizeof( interaction_t ); 
    275             psz_type = "interaction"; 
    276272            break; 
    277273        default: