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
b3cf216d
Commit
b3cf216d
authored
Aug 13, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Aug 14, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advpack/tests: Write-strings warnings fix.
parent
b843ce55
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
files.c
dlls/advpack/tests/files.c
+8
-4
No files found.
dlls/advpack/tests/files.c
View file @
b3cf216d
...
...
@@ -381,6 +381,10 @@ static void create_cab_file(void)
CCAB
cabParams
;
HFCI
hfci
;
ERF
erf
;
static
CHAR
a_txt
[]
=
"a.txt"
,
b_txt
[]
=
"b.txt"
,
testdir_c_txt
[]
=
"testdir
\\
c.txt"
,
testdir_d_txt
[]
=
"testdir
\\
d.txt"
;
BOOL
res
;
set_cab_parameters
(
&
cabParams
);
...
...
@@ -391,10 +395,10 @@ static void create_cab_file(void)
ok
(
hfci
!=
NULL
,
"Failed to create an FCI context
\n
"
);
add_file
(
hfci
,
"a.txt"
);
add_file
(
hfci
,
"b.txt"
);
add_file
(
hfci
,
"testdir
\\
c.txt"
);
add_file
(
hfci
,
"testdir
\\
d.txt"
);
add_file
(
hfci
,
a_txt
);
add_file
(
hfci
,
b_txt
);
add_file
(
hfci
,
testdir_c_txt
);
add_file
(
hfci
,
testdir_d_txt
);
res
=
FCIFlushCabinet
(
hfci
,
FALSE
,
get_next_cabinet
,
progress
);
ok
(
res
,
"Failed to flush the cabinet
\n
"
);
...
...
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