Commit 3e1ee5b8 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

include: Make "long" numeric constants LP64/LLP64 proof (shlwapi.h).

parent 04757b1b
...@@ -867,7 +867,7 @@ BOOL WINAPI StrToIntExA(LPCSTR lpszStr, DWORD dwFlags, LPINT lpiRet) ...@@ -867,7 +867,7 @@ BOOL WINAPI StrToIntExA(LPCSTR lpszStr, DWORD dwFlags, LPINT lpiRet)
} }
if (dwFlags > STIF_SUPPORT_HEX) if (dwFlags > STIF_SUPPORT_HEX)
{ {
WARN("Unknown flags (%08lX)!\n", dwFlags & ~STIF_SUPPORT_HEX); WARN("Unknown flags (%08X)!\n", dwFlags & ~STIF_SUPPORT_HEX);
} }
/* Skip leading space, '+', '-' */ /* Skip leading space, '+', '-' */
...@@ -937,7 +937,7 @@ BOOL WINAPI StrToIntExW(LPCWSTR lpszStr, DWORD dwFlags, LPINT lpiRet) ...@@ -937,7 +937,7 @@ BOOL WINAPI StrToIntExW(LPCWSTR lpszStr, DWORD dwFlags, LPINT lpiRet)
} }
if (dwFlags > STIF_SUPPORT_HEX) if (dwFlags > STIF_SUPPORT_HEX)
{ {
WARN("Unknown flags (%08lX)!\n", dwFlags & ~STIF_SUPPORT_HEX); WARN("Unknown flags (%08X)!\n", dwFlags & ~STIF_SUPPORT_HEX);
} }
/* Skip leading space, '+', '-' */ /* Skip leading space, '+', '-' */
......
...@@ -747,8 +747,8 @@ HRESULT WINAPI ParseURLW(LPCWSTR pszUrl, PARSEDURLW *ppu); ...@@ -747,8 +747,8 @@ HRESULT WINAPI ParseURLW(LPCWSTR pszUrl, PARSEDURLW *ppu);
#ifndef NO_SHLWAPI_STRFCNS #ifndef NO_SHLWAPI_STRFCNS
/* StrToIntEx flags */ /* StrToIntEx flags */
#define STIF_DEFAULT 0x0L #define STIF_DEFAULT __MSABI_LONG(0x0)
#define STIF_SUPPORT_HEX 0x1L #define STIF_SUPPORT_HEX __MSABI_LONG(0x1)
BOOL WINAPI ChrCmpIA (WORD,WORD); BOOL WINAPI ChrCmpIA (WORD,WORD);
BOOL WINAPI ChrCmpIW (WCHAR,WCHAR); BOOL WINAPI ChrCmpIW (WCHAR,WCHAR);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment