Function return types cannot be const.
This commit is contained in:
parent
cb54fe66bc
commit
5539e288a6
|
@ -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:
|
||||
|
|
|
@ -4472,7 +4472,7 @@ _invoke(FARPROC func,CALLCONV callconv, int nrargs, DWORD *args) {
|
|||
return res;
|
||||
}
|
||||
|
||||
extern int const _argsize(DWORD vt);
|
||||
extern int _argsize(DWORD vt);
|
||||
|
||||
/****************************************************************************
|
||||
* Helper functions for Dispcall / Invoke, which copies one variant
|
||||
|
|
Loading…
Reference in New Issue