Re: oleaut32: Constify some variables

2007-07-30 Thread Marcus Meissner
On Mon, Jul 30, 2007 at 09:27:45PM +0100, Andrew Talbot wrote: > Changelog: > oleaut32: Constify some variables. > > diff -urN a/dlls/oleaut32/typelib.c b/dlls/oleaut32/typelib.c > --- a/dlls/oleaut32/typelib.c 2007-07-30 17:23:19.0 +0100 > +++ b/dlls/oleaut32/typel

oleaut32: Constify some variables

2007-07-03 Thread Andrew Talbot
Rob Shearman wrote: >> -static OLEFontImpl* OLEFontImpl_Construct(LPFONTDESC fontDesc); >> +static OLEFontImpl* OLEFontImpl_Construct(const FONTDESC *fontDesc); >> static void OLEFontImpl_Destroy(OLEFontImpl* fontDesc); >> static ULONG WINAPI OLEFontImpl_AddRef(IFont* iface); >Even if the compile

Re: oleaut32: Constify some variables

2007-07-02 Thread Robert Shearman
Andrew Talbot wrote: -static OLEFontImpl* OLEFontImpl_Construct(LPFONTDESC fontDesc); +static OLEFontImpl* OLEFontImpl_Construct(const FONTDESC *fontDesc); static void OLEFontImpl_Destroy(OLEFontImpl* fontDesc); static ULONGWINAPI OLEFontImpl_AddRef(IFont* iface); Even if the