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
78fe60ac
Commit
78fe60ac
authored
Sep 21, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Sep 23, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gphoto2.ds: Use BOOL type where appropriate.
parent
a46da0e8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
ui.c
dlls/gphoto2.ds/ui.c
+3
-3
No files found.
dlls/gphoto2.ds/ui.c
View file @
78fe60ac
...
...
@@ -69,17 +69,17 @@ static void UI_EndDialog(HWND hwnd, INT_PTR rc)
EndDialog
(
hwnd
,
rc
);
}
static
int
GetAllImages
(
void
)
static
BOOL
GetAllImages
(
void
)
{
struct
gphoto2_file
*
file
;
int
has_images
=
0
;
BOOL
has_images
=
FALSE
;
LIST_FOR_EACH_ENTRY
(
file
,
&
activeDS
.
files
,
struct
gphoto2_file
,
entry
)
{
if
(
strstr
(
file
->
filename
,
".JPG"
)
||
strstr
(
file
->
filename
,
".jpg"
))
{
file
->
download
=
TRUE
;
has_images
=
1
;
has_images
=
TRUE
;
}
}
return
has_images
;
...
...
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