Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
3e1ee5b8
Commit
3e1ee5b8
authored
Nov 10, 2011
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Nov 14, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Make "long" numeric constants LP64/LLP64 proof (shlwapi.h).
parent
04757b1b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
string.c
dlls/shlwapi/string.c
+2
-2
shlwapi.h
include/shlwapi.h
+2
-2
No files found.
dlls/shlwapi/string.c
View file @
3e1ee5b8
...
...
@@ -867,7 +867,7 @@ BOOL WINAPI StrToIntExA(LPCSTR lpszStr, DWORD dwFlags, LPINT lpiRet)
}
if
(
dwFlags
>
STIF_SUPPORT_HEX
)
{
WARN
(
"Unknown flags (%08
l
X)!
\n
"
,
dwFlags
&
~
STIF_SUPPORT_HEX
);
WARN
(
"Unknown flags (%08X)!
\n
"
,
dwFlags
&
~
STIF_SUPPORT_HEX
);
}
/* Skip leading space, '+', '-' */
...
...
@@ -937,7 +937,7 @@ BOOL WINAPI StrToIntExW(LPCWSTR lpszStr, DWORD dwFlags, LPINT lpiRet)
}
if
(
dwFlags
>
STIF_SUPPORT_HEX
)
{
WARN
(
"Unknown flags (%08
l
X)!
\n
"
,
dwFlags
&
~
STIF_SUPPORT_HEX
);
WARN
(
"Unknown flags (%08X)!
\n
"
,
dwFlags
&
~
STIF_SUPPORT_HEX
);
}
/* Skip leading space, '+', '-' */
...
...
include/shlwapi.h
View file @
3e1ee5b8
...
...
@@ -747,8 +747,8 @@ HRESULT WINAPI ParseURLW(LPCWSTR pszUrl, PARSEDURLW *ppu);
#ifndef NO_SHLWAPI_STRFCNS
/* StrToIntEx flags */
#define STIF_DEFAULT
0x0L
#define STIF_SUPPORT_HEX
0x1L
#define STIF_DEFAULT
__MSABI_LONG(0x0)
#define STIF_SUPPORT_HEX
__MSABI_LONG(0x1)
BOOL
WINAPI
ChrCmpIA
(
WORD
,
WORD
);
BOOL
WINAPI
ChrCmpIW
(
WCHAR
,
WCHAR
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment