Scroll to navigation

VarParseNumFromStr(3w) Wine API 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

Declared in "oleauto.h".
Implemented in "dlls/oleaut32/variant.c".
Debug channel "variant".
Oct 2012 Wine API