VarParseNumFromStr.3w

Langue: en

Version: Jun 2009 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

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 "dlls/oleaut32/variant.c".

Debug channel "variant".