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
f277b969
Commit
f277b969
authored
May 30, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx11: Build with msvcrt.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7f2be06f
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
9 deletions
+6
-9
Makefile.in
dlls/d3dx11_42/Makefile.in
+2
-0
Makefile.in
dlls/d3dx11_43/Makefile.in
+2
-0
async.c
dlls/d3dx11_43/async.c
+2
-5
main.c
dlls/d3dx11_43/main.c
+0
-2
texture.c
dlls/d3dx11_43/texture.c
+0
-2
No files found.
dlls/d3dx11_42/Makefile.in
View file @
f277b969
...
...
@@ -3,6 +3,8 @@ MODULE = d3dx11_42.dll
IMPORTS
=
d3dcompiler
PARENTSRC
=
../d3dx11_43
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
async.c
\
main.c
\
...
...
dlls/d3dx11_43/Makefile.in
View file @
f277b969
...
...
@@ -3,6 +3,8 @@ MODULE = d3dx11_43.dll
IMPORTLIB
=
d3dx11
IMPORTS
=
d3dcompiler
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
async.c
\
main.c
\
...
...
dlls/d3dx11_43/async.c
View file @
f277b969
...
...
@@ -16,13 +16,10 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "d3dx11.h"
#include "d3dcompiler.h"
#include "wine/debug.h"
#include "wine/unicode.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3dx
);
...
...
@@ -317,13 +314,13 @@ HRESULT WINAPI D3DX11CreateAsyncFileLoaderW(const WCHAR *filename, ID3DX11DataLo
return
E_OUTOFMEMORY
;
object
->
ID3DX11DataLoader_iface
.
lpVtbl
=
&
filedataloadervtbl
;
object
->
u
.
file
.
path
=
HeapAlloc
(
GetProcessHeap
(),
0
,
(
strlenW
(
filename
)
+
1
)
*
sizeof
(
WCHAR
));
object
->
u
.
file
.
path
=
HeapAlloc
(
GetProcessHeap
(),
0
,
(
l
strlenW
(
filename
)
+
1
)
*
sizeof
(
WCHAR
));
if
(
!
object
->
u
.
file
.
path
)
{
HeapFree
(
GetProcessHeap
(),
0
,
object
);
return
E_OUTOFMEMORY
;
}
strcpyW
(
object
->
u
.
file
.
path
,
filename
);
l
strcpyW
(
object
->
u
.
file
.
path
,
filename
);
object
->
data
=
NULL
;
object
->
size
=
0
;
...
...
dlls/d3dx11_43/main.c
View file @
f277b969
...
...
@@ -17,8 +17,6 @@
*
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#define COBJMACROS
...
...
dlls/d3dx11_43/texture.c
View file @
f277b969
...
...
@@ -16,8 +16,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include "d3dx11.h"
#include "d3dcompiler.h"
...
...
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