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
7fd38368
Commit
7fd38368
authored
Dec 27, 2011
by
André Hentschel
Committed by
Alexandre Julliard
Dec 28, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3drm: Add IDirect3DRM2 interface.
parent
f8766bdc
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
3 deletions
+3
-3
d3drm.c
dlls/d3drm/d3drm.c
+0
-0
d3drm_main.c
dlls/d3drm/d3drm_main.c
+1
-1
d3drm_private.h
dlls/d3drm/d3drm_private.h
+1
-1
d3drm.h
include/d3drm.h
+1
-1
No files found.
dlls/d3drm/d3drm.c
View file @
7fd38368
This diff is collapsed.
Click to expand it.
dlls/d3drm/d3drm_main.c
View file @
7fd38368
...
...
@@ -50,5 +50,5 @@ HRESULT WINAPI Direct3DRMCreate(LPDIRECT3DRM* ppDirect3DRM)
{
TRACE
(
"(%p)
\n
"
,
ppDirect3DRM
);
return
Direct3DRM_create
(
ppDirect3DRM
);
return
Direct3DRM_create
(
(
IUnknown
**
)
ppDirect3DRM
);
}
dlls/d3drm/d3drm_private.h
View file @
7fd38368
...
...
@@ -26,7 +26,7 @@
#include "d3drm.h"
HRESULT
Direct3DRM_create
(
LPDIRECT3DRM
*
ppDirect3DRM
)
DECLSPEC_HIDDEN
;
HRESULT
Direct3DRM_create
(
IUnknown
**
ppObj
)
DECLSPEC_HIDDEN
;
HRESULT
Direct3DRMMeshBuilder_create
(
IUnknown
**
ppObj
)
DECLSPEC_HIDDEN
;
#endif
/* __D3DRM_PRIVATE_INCLUDED__ */
include/d3drm.h
View file @
7fd38368
...
...
@@ -230,7 +230,7 @@ DECLARE_INTERFACE_(IDirect3DRM2,IUnknown)
STDMETHOD
(
Load
)(
THIS_
LPVOID
,
LPVOID
,
LPIID
*
,
DWORD
,
D3DRMLOADOPTIONS
,
D3DRMLOADCALLBACK
,
LPVOID
,
D3DRMLOADTEXTURECALLBACK
,
LPVOID
,
LPDIRECT3DRMFRAME
)
PURE
;
STDMETHOD
(
Tick
)(
THIS_
D3DVALUE
)
PURE
;
STDMETHOD
(
CreateProgressiveMesh
)(
THIS_
LPDIRECT3DRMPROGRESSIVEMESH
)
PURE
;
STDMETHOD
(
CreateProgressiveMesh
)(
THIS_
LPDIRECT3DRMPROGRESSIVEMESH
*
)
PURE
;
};
#undef INTERFACE
...
...
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