Module: wine Branch: master Commit: c92fddae8661233e7699e1914987f0cc4caa8217 URL: https://source.winehq.org/git/wine.git/?a=commit;h=c92fddae8661233e7699e1914...
Author: Dmitry Timoshkov dmitry@baikal.ru Date: Tue Jun 4 00:03:04 2019 +0800
mshtml.idl: Add forward declaration for IHTMLWindow flavours.
This helps to make sure that getComputedStyle() gets picked up before GetComputedStyle(), and correct tlb is generated as a result.
Signed-off-by: Dmitry Timoshkov dmitry@baikal.ru Signed-off-by: Jacek Caban jacek@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
include/mshtml.idl | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/include/mshtml.idl b/include/mshtml.idl index de15c6c..f7ebd9e 100644 --- a/include/mshtml.idl +++ b/include/mshtml.idl @@ -407,6 +407,12 @@ interface IHTMLFrameBase; interface IHTMLStorage; interface IHTMLStyleSheetsCollection; interface IHTMLTableSection; +interface IHTMLWindow2; +interface IHTMLWindow3; +interface IHTMLWindow4; +interface IHTMLWindow5; +interface IHTMLWindow6; +interface IHTMLWindow7; interface IDOMEvent; interface IDisplayPointer; interface IDisplayServices;