Skip to content

Latest commit

 

History

History
146 lines (99 loc) · 4.9 KB

nf-shlwapi-strtoint64exa.md

File metadata and controls

146 lines (99 loc) · 4.9 KB
UID title description helpviewer_keywords old-location tech.root ms.assetid ms.date ms.keywords req.header req.include-header req.target-type req.target-min-winverclnt req.target-min-winversvr req.kmdf-ver req.umdf-ver req.ddi-compliance req.unicode-ansi req.idl req.max-support req.namespace req.assembly req.type-library req.lib req.dll req.irql targetos req.typenames req.redist ms.custom f1_keywords dev_langs topic_type api_type api_location api_name
NF:shlwapi.StrToInt64ExA
StrToInt64ExA function (shlwapi.h)
Converts a string representing a decimal or hexadecimal value to a 64-bit integer. (ANSI)
STIF_DEFAULT
STIF_SUPPORT_HEX
StrToInt64ExA
shlwapi/StrToInt64ExA
shell\StrToInt64Ex.htm
shell
8ea04c9f-6485-4931-a5d5-b22eb6681bd1
12/05/2018
STIF_DEFAULT, STIF_SUPPORT_HEX, StrToInt64Ex, StrToInt64Ex function [Windows Shell], StrToInt64ExA, StrToInt64ExW, _win32_StrToInt64Ex, shell.StrToInt64Ex, shlwapi/StrToInt64Ex, shlwapi/StrToInt64ExA, shlwapi/StrToInt64ExW
shlwapi.h
Windows
Windows 2000 Professional, Windows XP [desktop apps only]
Windows 2000 Server [desktop apps only]
StrToInt64ExW (Unicode) and StrToInt64ExA (ANSI)
Shlwapi.lib
Shlwapi.dll (version 5.0 or later)
Windows
19H1
StrToInt64ExA
shlwapi/StrToInt64ExA
c++
APIRef
kbSyntax
DllExport
Shlwapi.dll
API-MS-Win-Core-shlwapi-Obsolete-l1-1-0.dll
KernelBase.dll
API-MS-Win-Core-shlwapi-Obsolete-l1-2-0.dll
API-MS-Win-DownLevel-shlwapi-l1-1-0.dll
API-MS-Win-DownLevel-shlwapi-l1-1-1.dll
StrToInt64Ex
StrToInt64ExA
StrToInt64ExW

StrToInt64ExA function

-description

Converts a string representing a decimal or hexadecimal value to a 64-bit integer.

-parameters

-param pszString [in]

Type: PCTSTR

A pointer to the null-terminated string to be converted. For further details concerning the valid forms of the string, see the Remarks section.

-param dwFlags

Type: STIF_FLAGS

One of the following values that specify how pszString should be parsed for its conversion to a 64-bit integer.

STIF_DEFAULT

The string at pszString contains the representation of a decimal value.

STIF_SUPPORT_HEX

The string at pszString contains the representation of either a decimal or hexadecimal value. Note that in hexadecimal representations, the characters A-F are case-insensitive.

-param pllRet [out]

Type: LONGLONG*

A pointer to a variable of type LONGLONG that receives the 64-bit integer value of the converted string. For instance, in the case of the string "123", the integer pointed to by this value receives the value 123.

If this function returns FALSE, this value is undefined.

If the value returned is too large to be contained in a variable of type LONGLONG, this parameter contains the 64 low-order bits of the value. Any high-order bits beyond that are lost.

-returns

Type: BOOL

Returns TRUE if the string is converted; otherwise FALSE.

-remarks

The string pointed to by the pszString parameter must have one of the following forms to be parsed successfully.

  • This form is accepted as a decimal value under either flag.
    (optional white space)(optional sign)(one or more decimal digits)
  • These forms are required for hexadecimal values when the STIF_SUPPORT_HEX flag is passed.
    (optional white space)(optional sign)0x(one or more hexadecimal digits)
    (optional white space)(optional sign)0X(one or more hexadecimal digits)
The optional sign can be the character '-' or '+'; if omitted, the sign is assumed to be positive.
Note  If the value is parsed as hexadecimal, the optional sign is ignored, even if it is a '-' character. For example, the string "-0x1" is parsed as 1 instead of -1.
 
If the string pointed to by pszString contains an invalid character, that character is considered the end of the string to be converted and the remainder is ignored. For instance, given the invalid hexadecimal string "0x00am123", StrToInt64Ex only recognizes "0x00a", converts it to the integer value 10, and returns TRUE.

If pllRet is NULL, the function returns TRUE if the string can be converted, even though it does not perform the conversion.

Note

The shlwapi.h header defines StrToInt64Ex as an alias which automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor constant. Mixing usage of the encoding-neutral alias with code that not encoding-neutral can lead to mismatches that result in compilation or runtime errors. For more information, see Conventions for Function Prototypes.