NAME

VarParseNumFromStr  (OLEAUT32.46)

SYNOPSIS

 HRESULT VarParseNumFromStr
 (
  const 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". https://source.winehq.org/source/include/oleauto.h

Implemented in "dlls/oleaut32/variant.c". https://source.winehq.org/source/dlls/oleaut32/variant.c

Debug channel "variant".


Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Mar 2024.