j
k
j a
j l
On 06/27/14 04:44, Shuai Meng wrote:
static HRESULT Global_Abs(vbdisp_t *This, VARIANT *arg, unsigned args_cnt, VARIANT *res) { FIXME("\n"); return E_NOTIMPL; double v; HRESULT hres; TRACE("(%s)\n", debugstr_variant(arg)); assert(args_cnt == 1); if(V_VT(arg) == VT_NULL) return return_null(res); hres = to_double(arg, &v); if (FAILED(hres)) return hres; if(res) { V_VT(res) = VT_R8; V_R8(res) = v >= 0 ? v : -v; } return S_OK; }
static HRESULT Global_Abs(vbdisp_t *This, VARIANT *arg, unsigned args_cnt, VARIANT *res) {
return return_null(res);
return hres;
V_VT(res) = VT_R8;
V_R8(res) = v >= 0 ? v : -v;
You can use return_double helper here. Also there are 2 newlines after assert.
Show replies by date
wine-devel@winehq.org
Add to favorites Remove from favorites