ChangeSet ID: 13931 CVSROOT: /opt/cvs-commit Module name: wine Changes by: julliard@wine.codeweavers.com 2004/09/27 15:33:27 Modified files: dlls/oleaut32 : typelib.c tmarshal.c Log message: Marcus Meissner Function return types cannot be const. Patch: http://cvs.winehq.org/patch.py?id=13931 Old revision New revision Changes Path 1.122 1.123 +1 -1 wine/dlls/oleaut32/typelib.c 1.33 1.34 +1 -1 wine/dlls/oleaut32/tmarshal.c Index: wine/dlls/oleaut32/typelib.c diff -u -p wine/dlls/oleaut32/typelib.c:1.122 wine/dlls/oleaut32/typelib.c:1.123 --- wine/dlls/oleaut32/typelib.c:1.122 Thu May 23 02:03:16 2013 +++ wine/dlls/oleaut32/typelib.c Thu May 23 02:03:16 2013 @@ -4472,7 +4472,7 @@ _invoke(FARPROC func,CALLCONV callconv, return res; } -extern int const _argsize(DWORD vt); +extern int _argsize(DWORD vt); /**************************************************************************** * Helper functions for Dispcall / Invoke, which copies one variant Index: wine/dlls/oleaut32/tmarshal.c diff -u -p wine/dlls/oleaut32/tmarshal.c:1.33 wine/dlls/oleaut32/tmarshal.c:1.34 --- wine/dlls/oleaut32/tmarshal.c:1.33 Thu May 23 02:03:16 2013 +++ wine/dlls/oleaut32/tmarshal.c Thu May 23 02:03:16 2013 @@ -405,7 +405,7 @@ static IRpcProxyBufferVtbl tmproxyvtable }; /* how much space do we use on stack in DWORD steps. */ -int const +int _argsize(DWORD vt) { switch (vt) { case VT_DATE: