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
2f673f29
Commit
2f673f29
authored
Oct 16, 2013
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 17, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dcompiler_43/tests: Compile with -D__WINESRC__.
parent
a50d081c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
6 deletions
+4
-6
Makefile.in
dlls/d3dcompiler_43/tests/Makefile.in
+0
-1
hlsl.c
dlls/d3dcompiler_43/tests/hlsl.c
+4
-5
No files found.
dlls/d3dcompiler_43/tests/Makefile.in
View file @
2f673f29
TESTDLL
=
d3dcompiler_43.dll
IMPORTS
=
d3dcompiler d3d9 d3dx9 user32
EXTRADEFS
=
-U__WINESRC__
-DWINE_STRICT_PROTOTYPES
-DWINE_NO_NAMELESS_EXTENSION
-DWIDL_C_INLINE_WRAPPERS
C_SRCS
=
\
asm.c
\
...
...
dlls/d3dcompiler_43/tests/hlsl.c
View file @
2f673f29
...
...
@@ -42,13 +42,12 @@ struct hlsl_probe_info
static
HWND
create_window
(
void
)
{
WNDCLASS
wc
=
{
0
};
wc
.
lpfnWndProc
=
DefWindowProc
;
WNDCLASS
A
wc
=
{
0
};
wc
.
lpfnWndProc
=
DefWindowProc
A
;
wc
.
lpszClassName
=
"d3d9_test_wc"
;
RegisterClass
(
&
wc
);
RegisterClass
A
(
&
wc
);
return
CreateWindow
(
"d3d9_test_wc"
,
"d3d9_test"
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
);
return
CreateWindowA
(
"d3d9_test_wc"
,
"d3d9_test"
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
);
}
static
IDirect3DDevice9
*
init_d3d9
(
IDirect3DVertexDeclaration9
**
vdeclaration
,
...
...
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