VarParseNumFromStr (OLEAUT32.46)
HRESULT VarParseNumFromStr ( const OLECHAR* lpszStr, LCID lcid, ULONG dwFlags, NUMPARSE* pNumprs, BYTE* rgbDig )
Parse a string containing a number into a NUMPARSE structure.
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. |
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.
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".
- I am unsure if this function should parse non-Arabic (e.g. Thai) numerals, so this has not been implemented.
Declared in "include/oleauto.h". gitlab.winehq.org/wine/wine/blob/master/include/oleauto.h
Implemented in "dlls/oleaut32/variant.c". gitlab.winehq.org/wine/wine/blob/master/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 Nov 2024.