Changeset 661ff53c70cfe15b8a3a1ca0eba7f4c0c5542a0a
- 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
| r3284109 |
r661ff53 |
|
| 74 | 74 | [id(DISPID_Visible), propget, bindable, helpstring("Returns plugin visibility.")] |
|---|
| 75 | 75 | 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.")] |
|---|
| 77 | 77 | HRESULT Visible([in] VARIANT_BOOL visible); |
|---|
| 78 | 78 | [helpstring("Play current target in playlist.")] |
|---|
| … | … | |
| 86 | 86 | [id(DISPID_Position), propget, helpstring("Returns playback position within the current item. Position is a relative value ranging from 0.0 to 1.0.")] |
|---|
| 87 | 87 | 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.")] |
|---|
| 89 | 89 | HRESULT Position([in] float position); |
|---|
| 90 | 90 | [id(DISPID_Time), propget, helpstring("Returns playback time relative to the start of the current item.")] |
|---|
| 91 | 91 | 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.")] |
|---|
| 93 | 93 | HRESULT Time([in] int seconds); |
|---|
| 94 | 94 | [helpstring("Advance or backtrack playback time, relative to current time.")] //possibly find a better word to replace 'backtrack' [t] |
|---|
| … | … | |
| 104 | 104 | 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] |
|---|
| 105 | 105 | 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%.")] |
|---|
| 107 | 107 | HRESULT Volume([in] int volume); |
|---|
| 108 | 108 | [helpstring("Mute/unmute playback audio.")] |
|---|
| … | … | |
| 134 | 134 | [id(DISPID_MRL), propget, helpstring("Returns the first MRL in the playlist")] |
|---|
| 135 | 135 | 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")] |
|---|
| 137 | 137 | 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")] |
|---|
| 139 | 139 | 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")] |
|---|
| 141 | 141 | 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")] |
|---|
| 143 | 143 | 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")] |
|---|
| 145 | 145 | HRESULT AutoLoop([in] VARIANT_BOOL autoloop); |
|---|
| 146 | 146 | }; |
|---|