Show
Ignore:
Timestamp:
09/17/08 01:02:16 (4 months ago)
Author:
topia
Message:

fix Signature of ITunesApp.ConvertTracks?.
* Add more XML documentation comments.
* split ITunesApp interface as IITunesApp.
* This is ABI breakage, bump major version.

Files:
1 modified

Legend:

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

    r19308 r19406  
    11// $Id$ 
     2 
     3using Clovery.iTunesHelper.COMWrap.Interfaces; 
    24 
    35namespace Clovery.iTunesHelper.COMWrap.Internal 
     
    1719            return (long) high << 32 | (uint) low; 
    1820        } 
     21 
     22        protected internal static object ConvertObjectToITObject(IITInternalObject obj) 
     23        { 
     24            return obj.__internalObject; 
     25        } 
    1926    } 
    2027}