Commit 5539e288 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Function return types cannot be const.

parent cb54fe66
...@@ -405,7 +405,7 @@ static IRpcProxyBufferVtbl tmproxyvtable = { ...@@ -405,7 +405,7 @@ static IRpcProxyBufferVtbl tmproxyvtable = {
}; };
/* how much space do we use on stack in DWORD steps. */ /* how much space do we use on stack in DWORD steps. */
int const int
_argsize(DWORD vt) { _argsize(DWORD vt) {
switch (vt) { switch (vt) {
case VT_DATE: case VT_DATE:
......
...@@ -4472,7 +4472,7 @@ _invoke(FARPROC func,CALLCONV callconv, int nrargs, DWORD *args) { ...@@ -4472,7 +4472,7 @@ _invoke(FARPROC func,CALLCONV callconv, int nrargs, DWORD *args) {
return res; return res;
} }
extern int const _argsize(DWORD vt); extern int _argsize(DWORD vt);
/**************************************************************************** /****************************************************************************
* Helper functions for Dispcall / Invoke, which copies one variant * Helper functions for Dispcall / Invoke, which copies one variant
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment