VarParseNumFromStr(3w)
NAME
VarParseNumFromStr (OLEAUT32.46)
SYNOPSIS
HRESULT VarParseNumFromStr ( OLECHAR* lpszStr, LCID lcid, ULONG dwFlags, NUMPARSE* pNumprs, BYTE* rgbDig )
DESCRIPTION
Parse a string containing a number into a NUMPARSE structure.
PARAMS
lpszStr [In] String to parse number from.
lcid [In] Locale Id for the conversion.
dwFlags [In] 0, or LOCALE_NOUSEROVERRIDE to use system default number
chars.
pNumprs [In/Out] Destination for parsed number.
rgbDig [Out] Destination for digits read in.
RETURNS
Success: S_OK. pNumprs and rgbDig contain the parsed representation of
the number.
Failure: E_INVALIDARG, if any parameter is invalid. DISP_E_TYPEMISMATCH, if the string is not a number or is formatted incorrectly. DISP_E_OVERFLOW, if rgbDig is too small to hold the number.
NOTES
pNumprs must have the following fields set:
cDig: Set to the size of rgbDig.
dwInFlags: Set to the allowable syntax of the number using NUMPRS_
flags from "oleauto.h".
FIXME
- I am unsure if this function should parse non-arabic (e.g. Thai)
numerals, so this has not been implemented.
IMPLEMENTATION
Defined in "oleauto.h".
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/oleaut32/variant.c".
- Debug channel "variant".