Commit a42b0d13 authored by Stefan Leichter's avatar Stefan Leichter Committed by Alexandre Julliard

Partial implementaion of VarBstrFromDec.

parent 54100873
......@@ -3637,7 +3637,11 @@ HRESULT WINAPI VarBstrFromUI4(ULONG ulIn, LCID lcid, ULONG dwFlags, BSTR* pbstrO
* VarBstrFromDec [OLEAUT32.@]
*/
HRESULT WINAPI VarBstrFromDec(DECIMAL* pDecIn, LCID lcid, ULONG dwFlags, BSTR* pbstrOut)
{ FIXME("%c%08lx%08lx%08lx E%02x stub\n",
{
if(!pDecIn->u.s.sign && !pDecIn->u.s.scale &&
!pDecIn->Hi32 && !pDecIn->u1.s1.Mid32)
return VarBstrFromUI4(pDecIn->u1.s1.Lo32, lcid, dwFlags, pbstrOut);
FIXME("%c%08lx%08lx%08lx E%02x stub\n",
(pDecIn->u.s.sign == DECIMAL_NEG) ? '-' :
(pDecIn->u.s.sign == 0) ? '+' : '?',
pDecIn->Hi32, pDecIn->u1.s1.Mid32, pDecIn->u1.s1.Lo32,
......
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