Jacek Caban jacek@codeweavers.com writes:
Following patch series implements changes in MSHTML needed to change navigation in MSHTML/WebBrowser control. WebBrowser should reuse existing document if it declares that it can handle navigation (via another almost undocumented method that is mentioned: http://msdn.microsoft.com/en-us/library/aa770042%28VS.85%29.aspx ). This will allow us to support properly many more features, mainly javascript protocol that was my main motivation to implement it. shdocvw part will follow as soon as I will clean it up.
dlls/uuid/uuid.c | 1 + include/Makefile.in | 1 + include/wine/mshtml_ifaces.idl | 35 +++++++++++++++++++++++++++++++++++
I think it would be OK to define it in a public header like mshtml.idl, since it's an exported interface. Presumably it will get documented sooner or later.
On 3/3/10 12:26 PM, Alexandre Julliard wrote:
Jacek Cabanjacek@codeweavers.com writes:
Following patch series implements changes in MSHTML needed to change navigation in MSHTML/WebBrowser control. WebBrowser should reuse existing document if it declares that it can handle navigation (via another almost undocumented method that is mentioned: http://msdn.microsoft.com/en-us/library/aa770042%28VS.85%29.aspx ). This will allow us to support properly many more features, mainly javascript protocol that was my main motivation to implement it. shdocvw part will follow as soon as I will clean it up.
dlls/uuid/uuid.c | 1 + include/Makefile.in | 1 + include/wine/mshtml_ifaces.idl | 35 +++++++++++++++++++++++++++++++++++
I think it would be OK to define it in a public header like mshtml.idl, since it's an exported interface. Presumably it will get documented sooner or later.
I've resent the patch series with IHTMLPrivateWindow moved to mshtml.idl.
Thanks, Jacek