diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2004-03-16 09:51:19 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2004-03-16 09:51:19 +0000 |
commit | 7cfe32b4cae83c32f063b03fb300dddfa8b39dac (patch) | |
tree | 758ada57f63e12b3241e2bf8c8f51fd0dc6d5066 | |
parent | b4d978174eb2c66360649575176a7829024626a8 (diff) | |
download | cygnal-7cfe32b4cae83c32f063b03fb300dddfa8b39dac.tar.gz cygnal-7cfe32b4cae83c32f063b03fb300dddfa8b39dac.tar.bz2 cygnal-7cfe32b4cae83c32f063b03fb300dddfa8b39dac.zip |
* include/docobj.h (IOleDocumentView::GetDocument): Correct
prototype.
Thanks to Buster Copley <consequent@users.sourceforge.net>
-rw-r--r-- | winsup/w32api/ChangeLog | 7 | ||||
-rw-r--r-- | winsup/w32api/include/docobj.h | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index 840dc8265..7216cad1d 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -1,5 +1,12 @@ 2004-03-16 Danny Smith <dannysmith@users.sourceforge.net> + * include/docobj.h (IOleDocumentView::GetDocument): Correct + prototype. + Thanks to Buster Copley <consequent@users.sourceforge.net> + + +2004-03-16 Danny Smith <dannysmith@users.sourceforge.net> + * lib/ddk/ntoskrnl.def (MmAllocatePagesForMdl): Correct suffix. (MmMapIoSpace): Likewise. Thanks to Dan Aloni <da-x@colinux.org> diff --git a/winsup/w32api/include/docobj.h b/winsup/w32api/include/docobj.h index 27055dd84..4772c2e1a 100644 --- a/winsup/w32api/include/docobj.h +++ b/winsup/w32api/include/docobj.h @@ -88,7 +88,7 @@ DECLARE_INTERFACE_(IOleDocumentView,IUnknown) STDMETHOD(SetInPlaceSite)(THIS_ LPOLEINPLACESITE) PURE; STDMETHOD(GetInPlaceSite)(THIS_ LPOLEINPLACESITE*) PURE; - STDMETHOD(GetDocument)(THIS_ IUnknown*) PURE; + STDMETHOD(GetDocument)(THIS_ IUnknown**) PURE; STDMETHOD(SetRect)(THIS_ LPRECT) PURE; STDMETHOD(GetRect)(THIS_ LPRECT) PURE; STDMETHOD(SetRectComplex)(THIS_ LPRECT,LPRECT,LPRECT,LPRECT) PURE; |