Module: wine Branch: master Commit: 698d4114677205c3e5a0df659d230fe982578757 URL: http://source.winehq.org/git/wine.git/?a=commit;h=698d4114677205c3e5a0df659d...
Author: Andrey Gusev andrey.goosev@gmail.com Date: Wed May 18 16:49:35 2016 +0300
include: Fix a typo in IDirectShowStream interface.
Signed-off-by: Andrey Gusev andrey.goosev@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
include/amstream.idl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/amstream.idl b/include/amstream.idl index 2f32d44..d4e5e35 100644 --- a/include/amstream.idl +++ b/include/amstream.idl @@ -76,9 +76,9 @@ interface IDirectShowStream : IDispatch [propget, id(1), helpstring("property FileName")] HRESULT FileName([out, retval] BSTR *pVal); [propput, id(1), helpstring("property FileName")] HRESULT FileName([in] BSTR newVal); [propget, id(2), helpstring("property Video")] HRESULT Video([out, retval] OUTPUT_STATE *pVal); - [propput, id(2), helpstring("propetry Video")] HRESULT Video([in] OUTPUT_STATE newVal); + [propput, id(2), helpstring("property Video")] HRESULT Video([in] OUTPUT_STATE newVal); [propget, id(3), helpstring("property Audio")] HRESULT Audio([out, retval] OUTPUT_STATE *pVal); - [propput, id(3), helpstring("propetry Audio")] HRESULT Audio([in] OUTPUT_STATE newVal); + [propput, id(3), helpstring("property Audio")] HRESULT Audio([in] OUTPUT_STATE newVal); };
[