Changeset 661ff53c70cfe15b8a3a1ca0eba7f4c0c5542a0a

Show
Ignore:
Timestamp:
02/04/06 13:11:26 (3 years ago)
Author:
Clément Stenac <zorglub@videolan.org>
git-committer:
Clément Stenac <zorglub@videolan.org> 1143976286 +0000
git-parent:

[32841095aeb620c608dc6d1f24cc5f6c7941efd0]

git-author:
Clément Stenac <zorglub@videolan.org> 1143976286 +0000
Message:

2nd activeX review (Refs:#438)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • activex/axvlc.idl

    r3284109 r661ff53  
    7474        [id(DISPID_Visible), propget, bindable, helpstring("Returns plugin visibility.")] 
    7575        HRESULT Visible([out, retval] VARIANT_BOOL* visible); 
    76     [id(DISPID_Visible), propput, bindable, helpstring("Specifies plugin visibility.")] 
     76    [id(DISPID_Visible), propput, bindable, helpstring("Sets plugin visibility.")] 
    7777        HRESULT Visible([in] VARIANT_BOOL visible); 
    7878        [helpstring("Play current target in playlist.")] 
     
    8686    [id(DISPID_Position), propget, helpstring("Returns playback position within the current item.  Position is a relative value ranging from 0.0 to 1.0.")] 
    8787        HRESULT Position([out, retval] float* position); 
    88     [id(DISPID_Position), propput, helpstring("Specifies playback position within the current item.  Position is a relative value ranging from 0.0 to 1.0.")] 
     88    [id(DISPID_Position), propput, helpstring("Sets playback position within the current item.  Position is a relative value ranging from 0.0 to 1.0.")] 
    8989        HRESULT Position([in] float position); 
    9090    [id(DISPID_Time), propget, helpstring("Returns playback time relative to the start of the current item.")] 
    9191        HRESULT Time([out, retval] int* seconds); 
    92     [id(DISPID_Time), propput, helpstring("Specifies playback time relative to the start of the current item.")] 
     92    [id(DISPID_Time), propput, helpstring("Sets playback time relative to the start of the current item.")] 
    9393        HRESULT Time([in] int seconds); 
    9494    [helpstring("Advance or backtrack playback time, relative to current time.")]  //possibly find a better word to replace 'backtrack' [t] 
     
    104104    id(DISPID_Volume), propget, helpstring("Returns playback volume, ranges from 0 to 200%.")]  //possibly remove % from 'ranges', change to 'values', and specify that 200 is equivilant to 200% (remember, 200% == 2.0, but this gets an int not a float) [t] 
    105105        HRESULT Volume([out, retval] int* volume); 
    106     [id(DISPID_Volume), propput, helpstring("Specifies playback volume, ranges from 0 to 200%.")] 
     106    [id(DISPID_Volume), propput, helpstring("Sets playback volume, ranges from 0 to 200%.")] 
    107107        HRESULT Volume([in] int volume); 
    108108    [helpstring("Mute/unmute playback audio.")] 
     
    134134    [id(DISPID_MRL), propget, helpstring("Returns the first MRL in the playlist")] 
    135135        HRESULT MRL([out, retval] BSTR* mrl); 
    136         [id(DISPID_MRL), propput, helpstring("Specifies the first MRL in the playlist")] 
     136        [id(DISPID_MRL), propput, helpstring("Sets the first MRL in the playlist")] 
    137137        HRESULT MRL([in] BSTR mrl); 
    138         [id(DISPID_AutoPlay), propget, helpstring("Specifies whether default playlist is played on startup")] 
     138        [id(DISPID_AutoPlay), propget, helpstring("Sets whether playlist is played on startup")] 
    139139        HRESULT AutoPlay([out, retval] VARIANT_BOOL* autoplay); 
    140         [id(DISPID_AutoPlay), propput, helpstring("Returns whether default playlist is played on startup")] 
     140        [id(DISPID_AutoPlay), propput, helpstring("Returns whether playlist is played on startup")] 
    141141        HRESULT AutoPlay([in] VARIANT_BOOL autoplay); 
    142         [id(DISPID_AutoLoop), propget, helpstring("Specifies whether default playlist is looped")] 
     142        [id(DISPID_AutoLoop), propget, helpstring("Sets whether playlist is looped")] 
    143143        HRESULT AutoLoop([out, retval] VARIANT_BOOL* autoloop); 
    144         [id(DISPID_AutoLoop), propput, helpstring("Returns whether default playlist is looped")] 
     144        [id(DISPID_AutoLoop), propput, helpstring("Returns whether playlist is looped")] 
    145145        HRESULT AutoLoop([in] VARIANT_BOOL autoloop); 
    146146    };