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
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
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