mirror of
https://github.com/reactos/reactos.git
synced 2025-02-28 19:32:59 +00: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:
parent
c19ebd0b0a
commit
d7f1a784a8
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue