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
8c2cdf7b
Commit
8c2cdf7b
authored
Oct 02, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 03, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winemenubuilder: Win64 printf format warning fixes.
parent
ae48a519
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
Makefile.in
programs/winemenubuilder/Makefile.in
+0
-1
winemenubuilder.c
programs/winemenubuilder/winemenubuilder.c
+3
-3
No files found.
programs/winemenubuilder/Makefile.in
View file @
8c2cdf7b
...
...
@@ -6,7 +6,6 @@ MODULE = winemenubuilder.exe
APPMODE
=
-mwindows
IMPORTS
=
shell32 ole32 user32 advapi32 kernel32
EXTRALIBS
=
-luuid
EXTRADEFS
=
-DWINE_NO_LONG_AS_INT
C_SRCS
=
\
winemenubuilder.c
...
...
programs/winemenubuilder/winemenubuilder.c
View file @
8c2cdf7b
...
...
@@ -278,7 +278,7 @@ static BOOL extract_icon32(LPCWSTR szFileName, int nIndex, const char *szXPMFile
hModule
=
LoadLibraryExW
(
szFileName
,
0
,
LOAD_LIBRARY_AS_DATAFILE
);
if
(
!
hModule
)
{
WINE_ERR
(
"LoadLibraryExW (%s) failed, error %
l
d
\n
"
,
WINE_ERR
(
"LoadLibraryExW (%s) failed, error %d
\n
"
,
wine_dbgstr_w
(
szFileName
),
GetLastError
());
return
FALSE
;
}
...
...
@@ -286,7 +286,7 @@ static BOOL extract_icon32(LPCWSTR szFileName, int nIndex, const char *szXPMFile
if
(
nIndex
<
0
)
{
hResInfo
=
FindResourceW
(
hModule
,
MAKEINTRESOURCEW
(
-
nIndex
),
(
LPCWSTR
)
RT_GROUP_ICON
);
WINE_TRACE
(
"FindResourceW (%s) called, return %p, error %
l
d
\n
"
,
WINE_TRACE
(
"FindResourceW (%s) called, return %p, error %d
\n
"
,
wine_dbgstr_w
(
szFileName
),
hResInfo
,
GetLastError
());
}
else
...
...
@@ -297,7 +297,7 @@ static BOOL extract_icon32(LPCWSTR szFileName, int nIndex, const char *szXPMFile
if
(
!
EnumResourceNamesW
(
hModule
,
(
LPCWSTR
)
RT_GROUP_ICON
,
EnumResNameProc
,
(
LONG_PTR
)
&
sEnumRes
))
{
WINE_TRACE
(
"EnumResourceNamesW failed, error %
l
d
\n
"
,
GetLastError
());
WINE_TRACE
(
"EnumResourceNamesW failed, error %d
\n
"
,
GetLastError
());
}
}
...
...
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