mirror of
https://github.com/reactos/reactos.git
synced 2026-06-20 17:26:01 +08:00
[SHLWAPI] Use an explicit "int*" type for the 3rd parameter of StrToIntExA/W
As this is already present in our PSDK shlwapi.h header, MS PSDK one, and MSDN.
This commit is contained in:
@@ -883,7 +883,7 @@ int WINAPI StrToIntW(LPCWSTR lpszStr)
|
||||
* the string is treated as a decimal string. A leading '-' is ignored for
|
||||
* hexadecimal numbers.
|
||||
*/
|
||||
BOOL WINAPI StrToIntExA(LPCSTR lpszStr, DWORD dwFlags, LPINT lpiRet)
|
||||
BOOL WINAPI StrToIntExA(LPCSTR lpszStr, DWORD dwFlags, int *lpiRet)
|
||||
{
|
||||
LONGLONG li;
|
||||
BOOL bRes;
|
||||
@@ -967,7 +967,7 @@ BOOL WINAPI StrToInt64ExA(LPCSTR lpszStr, DWORD dwFlags, LONGLONG *lpiRet)
|
||||
*
|
||||
* See StrToIntExA.
|
||||
*/
|
||||
BOOL WINAPI StrToIntExW(LPCWSTR lpszStr, DWORD dwFlags, LPINT lpiRet)
|
||||
BOOL WINAPI StrToIntExW(LPCWSTR lpszStr, DWORD dwFlags, int *lpiRet)
|
||||
{
|
||||
LONGLONG li;
|
||||
BOOL bRes;
|
||||
|
||||
Reference in New Issue
Block a user