Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2004-01-04 02:18:31 +0300
committerDanny Smith <dannysmith@users.sourceforge.net>2004-01-04 02:18:31 +0300
commitffdd3bba14650f591540d09dee6b306def2aebf5 (patch)
tree2dcea57b8fdbae0e72224c27ec092603ea4dae87 /winsup
parentb01201ec32169c6b2889e1c4dd24a4a71ad16bbd (diff)
* include/mshtml.h (IHTMLDocument2): Correct write, writeln
declarations. Thanks to: Rene Nyffenegger <renenyffenegger@users.sf.net>.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/w32api/ChangeLog6
-rw-r--r--winsup/w32api/include/mshtml.h4
2 files changed, 8 insertions, 2 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog
index 7c82a67e6..c8014e9fc 100644
--- a/winsup/w32api/ChangeLog
+++ b/winsup/w32api/ChangeLog
@@ -1,3 +1,9 @@
+2004-01-03 Danny Smith <dannysmith@users.sourceforge.net>
+
+ * include/mshtml.h (IHTMLDocument2): Correct write, writeln
+ declarations.
+ Thanks to: Rene Nyffenegger <renenyffenegger@users.sf.net>.
+
2004-01-03 Filip Navara <xnavara@volny.cz>
* include/cguid.h (CLSID_StdGlobalInterfaceTable): Declare IID.
diff --git a/winsup/w32api/include/mshtml.h b/winsup/w32api/include/mshtml.h
index d84d01cd0..40115e951 100644
--- a/winsup/w32api/include/mshtml.h
+++ b/winsup/w32api/include/mshtml.h
@@ -223,8 +223,8 @@ DECLARE_INTERFACE_(IHTMLDocument2,IHTMLDocument)
STDMETHOD(get_security)(THIS_ BSTR*) PURE;
STDMETHOD(get_protocol)(THIS_ BSTR*) PURE;
STDMETHOD(get_nameProp)(THIS_ BSTR*) PURE;
- STDMETHOD(write)(THIS_ SAFEARRAY) PURE;
- STDMETHOD(writeln)(THIS_ SAFEARRAY) PURE;
+ STDMETHOD(write)(THIS_ SAFEARRAY*) PURE;
+ STDMETHOD(writeln)(THIS_ SAFEARRAY*) PURE;
STDMETHOD(open)(THIS_ BSTR,VARIANT,VARIANT,VARIANT,IDispatch**) PURE;
STDMETHOD(close)(THIS) PURE;
STDMETHOD(clear)(THIS) PURE;