table of contents
other versions
- wheezy 1.4.1-4
VarBstrFromDec(3w) | Wine API | VarBstrFromDec(3w) |
NAME¶
VarBstrFromDec (OLEAUT32.232)SYNOPSIS¶
HRESULT VarBstrFromDec(
DECIMAL* pDecIn,
LCID lcid,
ULONG dwFlags,
BSTR* pbstrOut
)
DESCRIPTION¶
Convert a VT_DECIMAL to a VT_BSTR.PARAMS¶
pDecIn [In] Source. lcid [In] LCID for the conversion. dwFlags [In] Flags controlling the conversion (VAR_ flags from "oleauto.h"). pbstrOut [Out] Destination.RETURNS¶
Success: S_OK. Failure: E_INVALIDARG, if pbstrOut is invalid. E_OUTOFMEMORY, if memory allocation fails.IMPLEMENTATION¶
Declared in "oleauto.h". Implemented in "dlls/oleaut32/vartype.c". Debug channel "variant".Oct 2012 | Wine API |