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
2e935324
Commit
2e935324
authored
Aug 04, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
Aug 05, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gphoto2.ds: Sign-compare warning fix.
parent
d9d82885
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
gphoto2_i.h
dlls/gphoto2.ds/gphoto2_i.h
+1
-1
ui.c
dlls/gphoto2.ds/ui.c
+2
-2
No files found.
dlls/gphoto2.ds/gphoto2_i.h
View file @
2e935324
...
...
@@ -244,7 +244,7 @@ TW_UINT16 GPHOTO2_RGBResponseSet
/* UI function */
BOOL
DoCameraUI
(
void
);
HWND
TransferringDialogBox
(
HWND
dialog
,
DWORD
progress
);
HWND
TransferringDialogBox
(
HWND
dialog
,
LONG
progress
);
#ifdef HAVE_GPHOTO2
/* Helper function for GUI */
...
...
dlls/gphoto2.ds/ui.c
View file @
2e935324
...
...
@@ -274,12 +274,12 @@ static INT_PTR CALLBACK ProgressProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM
return
FALSE
;
}
HWND
TransferringDialogBox
(
HWND
dialog
,
DWORD
progress
)
HWND
TransferringDialogBox
(
HWND
dialog
,
LONG
progress
)
{
if
(
!
dialog
)
dialog
=
CreateDialogW
(
GPHOTO2_instance
,
(
LPWSTR
)
MAKEINTRESOURCE
(
IDD_DIALOG1
),
NULL
,
ProgressProc
);
if
(
progress
==
-
1
)
{
EndDialog
(
dialog
,
0
);
...
...
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