mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 13:10:28 +00:00
d3dx9_36: Make variables static in xfile tests.
This commit is contained in:
parent
45e43dc5d0
commit
64a88a2d83
@ -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)
|
|||||||
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);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user