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
c9c74b8b
Commit
c9c74b8b
authored
Mar 26, 2019
by
Matteo Bruni
Committed by
Alexandre Julliard
Mar 27, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Fix D3DXF_FILELOADMEMORY definition.
Signed-off-by:
Matteo Bruni
<
mbruni@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0dbca580
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
xfile.c
dlls/d3dx9_36/xfile.c
+1
-1
d3dx9xof.h
include/d3dx9xof.h
+1
-1
No files found.
dlls/d3dx9_36/xfile.c
View file @
c9c74b8b
...
...
@@ -588,7 +588,7 @@ static HRESULT WINAPI d3dx9_file_CreateEnumObject(ID3DXFile *iface, const void *
{
D3DXF_FILELOADMEMORY
*
memory
=
(
D3DXF_FILELOADMEMORY
*
)
source
;
dxfile_memory
.
lpMemory
=
memory
->
lpMemory
;
dxfile_memory
.
lpMemory
=
(
void
*
)
memory
->
lpMemory
;
dxfile_memory
.
dSize
=
memory
->
dSize
;
dxfile_source
=
&
dxfile_memory
;
dxfile_options
=
DXFILELOAD_FROMMEMORY
;
...
...
include/d3dx9xof.h
View file @
c9c74b8b
...
...
@@ -49,7 +49,7 @@ typedef struct _D3DXF_FILELOADRESOURCE
typedef
struct
_D3DXF_FILELOADMEMORY
{
void
*
lpMemory
;
const
void
*
lpMemory
;
SIZE_T
dSize
;
}
D3DXF_FILELOADMEMORY
;
...
...
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