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
9997f84e
Commit
9997f84e
authored
Oct 31, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Oct 31, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add void to empty declaration list.
parent
4b5f326e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
shlexec.c
dlls/shell32/tests/shlexec.c
+7
-7
No files found.
dlls/shell32/tests/shlexec.c
View file @
9997f84e
...
...
@@ -58,7 +58,7 @@ static DLLVERSIONINFO dllver;
* ShellExecute wrappers
*
***/
static
void
dump_child
();
static
void
dump_child
(
void
);
static
HANDLE
hEvent
;
static
void
init_event
(
const
char
*
child_file
)
...
...
@@ -369,7 +369,7 @@ static char* getChildString(const char* sect, const char* key)
return
ret
;
}
static
void
dump_child
()
static
void
dump_child
(
void
)
{
if
(
winetest_debug
>
1
)
{
...
...
@@ -520,7 +520,7 @@ static filename_tests_t noquotes_tests[]=
{
NULL
,
NULL
,
0
,
0
}
};
static
void
test_filename
()
static
void
test_filename
(
void
)
{
char
filename
[
MAX_PATH
];
const
filename_tests_t
*
test
;
...
...
@@ -690,7 +690,7 @@ static filename_tests_t lnk_tests[]=
{
NULL
,
NULL
,
0
,
0
}
};
static
void
test_lnks
()
static
void
test_lnks
(
void
)
{
char
filename
[
MAX_PATH
];
char
params
[
MAX_PATH
];
...
...
@@ -788,7 +788,7 @@ static void test_lnks()
}
static
void
test_exes
()
static
void
test_exes
(
void
)
{
char
filename
[
MAX_PATH
];
char
params
[
1024
];
...
...
@@ -814,7 +814,7 @@ static void test_exes()
}
static
void
init_test
()
static
void
init_test
(
void
)
{
HMODULE
hdll
;
HRESULT
(
WINAPI
*
pDllGetVersion
)(
DLLVERSIONINFO
*
);
...
...
@@ -916,7 +916,7 @@ static void init_test()
create_test_verb
(
".shlexec"
,
"QuotedUpperL"
,
"QuotedUpperL
\"
%L
\"
"
);
}
static
void
cleanup_test
()
static
void
cleanup_test
(
void
)
{
char
filename
[
MAX_PATH
];
const
char
*
const
*
testfile
;
...
...
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