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
64a88a2d
Commit
64a88a2d
authored
Jan 18, 2013
by
Christian Costa
Committed by
Alexandre Julliard
Jan 18, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9_36: Make variables static in xfile tests.
parent
45e43dc5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
xfile.c
dlls/d3dx9_36/tests/xfile.c
+7
-7
No files found.
dlls/d3dx9_36/tests/xfile.c
View file @
64a88a2d
...
@@ -20,23 +20,23 @@
...
@@ -20,23 +20,23 @@
#include "d3dx9.h"
#include "d3dx9.h"
#include "d3dx9xof.h"
#include "d3dx9xof.h"
char
templates_bad_file_type1
[]
=
static
char
templates_bad_file_type1
[]
=
"xOf 0302txt 0064
\n
"
;
"xOf 0302txt 0064
\n
"
;
char
templates_bad_file_version
[]
=
static
char
templates_bad_file_version
[]
=
"xof 0102txt 0064
\n
"
;
"xof 0102txt 0064
\n
"
;
char
templates_bad_file_type2
[]
=
static
char
templates_bad_file_type2
[]
=
"xof 0302foo 0064
\n
"
;
"xof 0302foo 0064
\n
"
;
char
templates_bad_file_float_size
[]
=
static
char
templates_bad_file_float_size
[]
=
"xof 0302txt 0050
\n
"
;
"xof 0302txt 0050
\n
"
;
char
templates_parse_error
[]
=
static
char
templates_parse_error
[]
=
"xof 0302txt 0064"
"xof 0302txt 0064"
"foobar;
\n
"
;
"foobar;
\n
"
;
char
templates
[]
=
static
char
templates
[]
=
"xof 0302txt 0064"
"xof 0302txt 0064"
"template Header"
"template Header"
"{"
"{"
...
@@ -80,7 +80,7 @@ static void test_templates(void)
...
@@ -80,7 +80,7 @@ static void test_templates(void)
todo_wine
ok
(
ret
==
D3DXFERR_PARSEERROR
,
"RegisterTemplates returned %#x, expected %#x
\n
"
,
ret
,
D3DXFERR_PARSEERROR
);
todo_wine
ok
(
ret
==
D3DXFERR_PARSEERROR
,
"RegisterTemplates returned %#x, expected %#x
\n
"
,
ret
,
D3DXFERR_PARSEERROR
);
ret
=
d3dxfile
->
lpVtbl
->
RegisterTemplates
(
d3dxfile
,
(
const
void
*
)
templates
,
(
SIZE_T
)(
sizeof
(
templates
)
-
1
));
ret
=
d3dxfile
->
lpVtbl
->
RegisterTemplates
(
d3dxfile
,
(
const
void
*
)
templates
,
(
SIZE_T
)(
sizeof
(
templates
)
-
1
));
ok
(
ret
==
S_OK
,
"RegisterTemplates with %#x
\n
"
,
ret
);
ok
(
ret
==
S_OK
,
"RegisterTemplates
failed
with %#x
\n
"
,
ret
);
d3dxfile
->
lpVtbl
->
Release
(
d3dxfile
);
d3dxfile
->
lpVtbl
->
Release
(
d3dxfile
);
}
}
...
...
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