Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
84473e5b
Commit
84473e5b
authored
Oct 03, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 04, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hhctrl.ocx: Win64 printf format warning fixes.
parent
277fab6c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
3 deletions
+2
-3
Makefile.in
dlls/hhctrl.ocx/Makefile.in
+0
-1
hhctrl.c
dlls/hhctrl.ocx/hhctrl.c
+1
-1
main.c
dlls/hhctrl.ocx/main.c
+1
-1
No files found.
dlls/hhctrl.ocx/Makefile.in
View file @
84473e5b
...
...
@@ -5,7 +5,6 @@ VPATH = @srcdir@
MODULE
=
hhctrl.ocx
IMPORTS
=
advapi32 comctl32 shell32 ole32 oleaut32 user32 gdi32 kernel32
EXTRALIBS
=
-luuid
EXTRADEFS
=
-DWINE_NO_LONG_AS_INT
C_SRCS
=
\
chm.c
\
...
...
dlls/hhctrl.ocx/hhctrl.c
View file @
84473e5b
...
...
@@ -76,7 +76,7 @@ HWND WINAPI HtmlHelpW(HWND caller, LPCWSTR filename, UINT command, DWORD data)
{
CHAR
*
file
=
NULL
;
TRACE
(
"(%p, %s, command=%s, data=%
l
d)
\n
"
,
TRACE
(
"(%p, %s, command=%s, data=%d)
\n
"
,
caller
,
debugstr_w
(
filename
),
command_to_string
(
command
),
data
);
...
...
dlls/hhctrl.ocx/main.c
View file @
84473e5b
...
...
@@ -30,7 +30,7 @@ HINSTANCE hhctrl_hinstance;
BOOL
WINAPI
DllMain
(
HINSTANCE
hInstance
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
TRACE
(
"(%p,%
l
d,%p)
\n
"
,
hInstance
,
fdwReason
,
lpvReserved
);
TRACE
(
"(%p,%d,%p)
\n
"
,
hInstance
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
{
...
...
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