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
4b772c2c
Commit
4b772c2c
authored
Sep 10, 2013
by
Henri Verbeet
Committed by
Alexandre Julliard
Sep 10, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3drm: Avoid LPRECT.
parent
39991e75
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
texture.c
dlls/d3drm/texture.c
+3
-4
d3drmobj.h
include/d3drmobj.h
+1
-1
No files found.
dlls/d3drm/texture.c
View file @
4b772c2c
...
@@ -565,11 +565,10 @@ static HRESULT WINAPI IDirect3DRMTexture3Impl_InitFromResource(IDirect3DRMTextur
...
@@ -565,11 +565,10 @@ static HRESULT WINAPI IDirect3DRMTexture3Impl_InitFromResource(IDirect3DRMTextur
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
IDirect3DRMTexture3Impl_Changed
(
IDirect3DRMTexture3
*
iface
,
DWORD
flags
,
DWORD
nb_rects
,
LPRECT
rects
)
static
HRESULT
WINAPI
IDirect3DRMTexture3Impl_Changed
(
IDirect3DRMTexture3
*
iface
,
DWORD
flags
,
DWORD
rect_count
,
RECT
*
rects
)
{
{
IDirect3DRMTextureImpl
*
This
=
impl_from_IDirect3DRMTexture3
(
iface
);
FIXME
(
"iface %p, flags %#x, rect_count %u, rects %p stub!
\n
"
,
iface
,
flags
,
rect_count
,
rects
);
FIXME
(
"(%p/%p)->(%x, %u, %p): stub
\n
"
,
iface
,
This
,
flags
,
nb_rects
,
rects
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
...
include/d3drmobj.h
View file @
4b772c2c
...
@@ -3442,7 +3442,7 @@ DECLARE_INTERFACE_(IDirect3DRMTexture3, IDirect3DRMVisual)
...
@@ -3442,7 +3442,7 @@ DECLARE_INTERFACE_(IDirect3DRMTexture3, IDirect3DRMVisual)
STDMETHOD
(
InitFromFile
)(
THIS_
const
char
*
filename
)
PURE
;
STDMETHOD
(
InitFromFile
)(
THIS_
const
char
*
filename
)
PURE
;
STDMETHOD
(
InitFromSurface
)(
THIS_
IDirectDrawSurface
*
surface
)
PURE
;
STDMETHOD
(
InitFromSurface
)(
THIS_
IDirectDrawSurface
*
surface
)
PURE
;
STDMETHOD
(
InitFromResource
)(
THIS_
HRSRC
)
PURE
;
STDMETHOD
(
InitFromResource
)(
THIS_
HRSRC
)
PURE
;
STDMETHOD
(
Changed
)(
THIS_
DWORD
dwFlags
,
DWORD
dwcRects
,
LPRECT
pR
ects
)
PURE
;
STDMETHOD
(
Changed
)(
THIS_
DWORD
flags
,
DWORD
rect_count
,
RECT
*
r
ects
)
PURE
;
STDMETHOD
(
SetColors
)(
THIS_
DWORD
)
PURE
;
STDMETHOD
(
SetColors
)(
THIS_
DWORD
)
PURE
;
STDMETHOD
(
SetShades
)(
THIS_
DWORD
)
PURE
;
STDMETHOD
(
SetShades
)(
THIS_
DWORD
)
PURE
;
STDMETHOD
(
SetDecalSize
)(
THIS_
D3DVALUE
width
,
D3DVALUE
height
)
PURE
;
STDMETHOD
(
SetDecalSize
)(
THIS_
D3DVALUE
width
,
D3DVALUE
height
)
PURE
;
...
...
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