Create a propper stub for oleaut32.VarMod.

This commit is contained in:
Mike McCormack 2003-09-08 18:37:22 +00:00 committed by Alexandre Julliard
parent 62986a0107
commit 8d61c96d64
2 changed files with 11 additions and 1 deletions

View File

@ -150,7 +150,7 @@
152 stub VarEqv # stdcall (ptr ptr ptr) 152 stub VarEqv # stdcall (ptr ptr ptr)
153 stub VarIdiv # stdcall (ptr ptr ptr) 153 stub VarIdiv # stdcall (ptr ptr ptr)
154 stub VarImp # stdcall (ptr ptr ptr) 154 stub VarImp # stdcall (ptr ptr ptr)
155 stub VarMod # stdcall (ptr ptr ptr) 155 stdcall VarMod(ptr ptr ptr)
156 stdcall VarMul(ptr ptr ptr) 156 stdcall VarMul(ptr ptr ptr)
157 stdcall VarOr(ptr ptr ptr) 157 stdcall VarOr(ptr ptr ptr)
158 stub VarPow # stdcall (ptr ptr ptr) 158 stub VarPow # stdcall (ptr ptr ptr)

View File

@ -6265,3 +6265,13 @@ HRESULT WINAPI VarCyMulI4(CY cyIn, LONG mulBy, CY *pcyOut) {
} }
return rc; return rc;
} }
/**********************************************************************
* VarMod [OLEAUT32.154]
*
*/
HRESULT WINAPI VarMod(LPVARIANT left, LPVARIANT right, LPVARIANT result)
{
FIXME("%p %p %p\n", left, right, result);
return E_FAIL;
}