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
e76d25f6
Commit
e76d25f6
authored
Jun 20, 2005
by
Saulius Krasuckas
Committed by
Alexandre Julliard
Jun 20, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Sync msvcmaker with make_ctests to generate valid code.
parent
383302c1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
10 deletions
+4
-10
msvcmaker
tools/winapi/msvcmaker
+4
-10
No files found.
tools/winapi/msvcmaker
View file @
e76d25f6
...
@@ -1079,26 +1079,20 @@ sub _generate_testlist_c($$) {
...
@@ -1079,26 +1079,20 @@ sub _generate_testlist_c($$) {
print
OUT
"#include \"windef.h\"\n"
;
print
OUT
"#include \"windef.h\"\n"
;
print
OUT
"#include \"winbase.h\"\n"
;
print
OUT
"#include \"winbase.h\"\n"
;
print
OUT
"\n"
;
print
OUT
"\n"
;
print
OUT
"#define STANDALONE\n"
;
print
OUT
"#include \"wine/test.h\"\n"
;
print
OUT
"\n"
;
foreach
my
$test
(
@tests
)
{
foreach
my
$test
(
@tests
)
{
print
OUT
"extern void func_$test(void);\n"
;
print
OUT
"extern void func_$test(void);\n"
;
}
}
print
OUT
"\n"
;
print
OUT
"\n"
;
print
OUT
"struct test\n"
;
print
OUT
"const struct test winetest_testlist[] =\n"
;
print
OUT
"{\n"
;
print
OUT
" const char *name;\n"
;
print
OUT
" void (*func)(void);\n"
;
print
OUT
"};\n"
;
print
OUT
"\n"
;
print
OUT
"static const struct test winetest_testlist[] =\n"
;
print
OUT
"{\n"
;
print
OUT
"{\n"
;
foreach
my
$test
(
@tests
)
{
foreach
my
$test
(
@tests
)
{
print
OUT
" { \"$test\", func_$test },\n"
;
print
OUT
" { \"$test\", func_$test },\n"
;
}
}
print
OUT
" { 0, 0 }\n"
;
print
OUT
" { 0, 0 }\n"
;
print
OUT
"};\n"
;
print
OUT
"};\n"
;
print
OUT
"\n"
;
print
OUT
"#define WINETEST_WANT_MAIN\n"
;
print
OUT
"#include \"wine/test.h\"\n"
;
}
}
if
(
$options
->
winetest
)
{
if
(
$options
->
winetest
)
{
...
...
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