Show
Ignore:
Timestamp:
09/15/08 01:35:51 (4 months ago)
Author:
topia
Message:

update supported iTunesLib version to 1.11 (iTunes 7.7).
* support PersistentID and Playlists property.
* support ITArtwork.Description property.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/csharp/iTunesCOMWrap/trunk/iTunesCOMWrap/Application.cs

    r11205 r19308  
    66using System.Runtime.InteropServices; 
    77using Clovery.iTunesHelper.COMWrap.Interfaces; 
     8using Clovery.iTunesHelper.COMWrap.Interfaces.Internal; 
     9using Clovery.iTunesHelper.COMWrap.Internal; 
    810using iTunes = iTunesLib; 
    911 
     
    553555    } 
    554556 
    555     internal class CanSetShufflePlaylistCollection : IIndexedCollection<IPlaylist, bool> 
     557    namespace Internal 
    556558    { 
    557         public bool this[IPlaylist Playlist] 
    558         { 
    559             get { return Playlist.CanSetShuffle; } 
    560         } 
    561     } 
    562  
    563     internal class CanSetSongRepeatPlaylistCollection : IIndexedCollection<IPlaylist, bool> 
    564     { 
    565         public bool this[IPlaylist Playlist] 
    566         { 
    567             get { return Playlist.CanSetSongRepeat; } 
    568         } 
     559        internal class CanSetShufflePlaylistCollection : IIndexedCollection<IPlaylist, bool> 
     560        { 
     561            public bool this[IPlaylist Playlist] 
     562            { 
     563                get { return Playlist.CanSetShuffle; } 
     564            } 
     565        } 
     566 
     567        internal class CanSetSongRepeatPlaylistCollection : IIndexedCollection<IPlaylist, bool> 
     568        { 
     569            public bool this[IPlaylist Playlist] 
     570            { 
     571                get { return Playlist.CanSetSongRepeat; } 
     572            } 
     573        }         
    569574    } 
    570575