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
d9ec2b6d
Commit
d9ec2b6d
authored
Jun 17, 2012
by
André Hentschel
Committed by
Alexandre Julliard
Jun 18, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3drm: Implement IDirect3DRMWinDevice_GetClassName.
parent
069e93f7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
3 deletions
+29
-3
device.c
dlls/d3drm/device.c
+3
-3
d3drm.c
dlls/d3drm/tests/d3drm.c
+26
-0
No files found.
dlls/d3drm/device.c
View file @
d9ec2b6d
...
...
@@ -1115,13 +1115,13 @@ static HRESULT WINAPI IDirect3DRMWinDeviceImpl_GetName(IDirect3DRMWinDevice* ifa
}
static
HRESULT
WINAPI
IDirect3DRMWinDeviceImpl_GetClassName
(
IDirect3DRMWinDevice
*
iface
,
LPDWORD
size
,
LPSTR
name
)
LPDWORD
size
,
LPSTR
name
)
{
IDirect3DRMDeviceImpl
*
This
=
impl_from_IDirect3DRMWinDevice
(
iface
);
FIXME
(
"(%p/%p)->(%p, %p): stub
\n
"
,
iface
,
This
,
size
,
name
);
TRACE
(
"(%p/%p)->(%p, %p)
\n
"
,
iface
,
This
,
size
,
name
);
return
E_NOTIMPL
;
return
IDirect3DRMDevice3_GetClassName
(
&
This
->
IDirect3DRMDevice3_iface
,
size
,
name
)
;
}
/*** IDirect3DRMWinDevice methods ***/
...
...
dlls/d3drm/tests/d3drm.c
View file @
d9ec2b6d
...
...
@@ -20,6 +20,7 @@
#define COBJMACROS
#include <d3drm.h>
#include <initguid.h>
#include <d3drmwin.h>
#include "wine/test.h"
...
...
@@ -1086,6 +1087,7 @@ static void test_Device(void)
LPDIRECT3DRM
pD3DRM
;
LPDIRECTDRAWCLIPPER
pClipper
;
LPDIRECT3DRMDEVICE
pDevice
;
LPDIRECT3DRMWINDEVICE
pWinDevice
;
GUID
driver
;
HWND
window
;
RECT
rc
;
...
...
@@ -1121,6 +1123,30 @@ static void test_Device(void)
ok
(
size
==
sizeof
(
"Device"
),
"wrong size: %u
\n
"
,
size
);
ok
(
!
strcmp
(
cname
,
"Device"
),
"Expected cname to be
\"
Device
\"
, but got
\"
%s
\"\n
"
,
cname
);
/* WinDevice */
hr
=
IDirect3DRMDevice_QueryInterface
(
pDevice
,
&
IID_IDirect3DRMWinDevice
,
(
LPVOID
*
)
&
pWinDevice
);
if
(
FAILED
(
hr
))
{
win_skip
(
"Cannot get IDirect3DRMWinDevice interface (hr = %x), skipping tests
\n
"
,
hr
);
goto
cleanup
;
}
hr
=
IDirect3DRMWinDevice_GetClassName
(
pWinDevice
,
NULL
,
cname
);
ok
(
hr
==
E_INVALIDARG
,
"GetClassName failed with %x
\n
"
,
hr
);
hr
=
IDirect3DRMWinDevice_GetClassName
(
pWinDevice
,
NULL
,
NULL
);
ok
(
hr
==
E_INVALIDARG
,
"GetClassName failed with %x
\n
"
,
hr
);
size
=
1
;
hr
=
IDirect3DRMWinDevice_GetClassName
(
pWinDevice
,
&
size
,
cname
);
ok
(
hr
==
E_INVALIDARG
,
"GetClassName failed with %x
\n
"
,
hr
);
size
=
sizeof
(
cname
);
hr
=
IDirect3DRMWinDevice_GetClassName
(
pWinDevice
,
&
size
,
cname
);
ok
(
hr
==
D3DRM_OK
,
"Cannot get classname (hr = %x)
\n
"
,
hr
);
ok
(
size
==
sizeof
(
"Device"
),
"wrong size: %u
\n
"
,
size
);
ok
(
!
strcmp
(
cname
,
"Device"
),
"Expected cname to be
\"
Device
\"
, but got
\"
%s
\"\n
"
,
cname
);
IDirect3DRMWinDevice_Release
(
pWinDevice
);
cleanup:
IDirect3DRMDevice_Release
(
pDevice
);
IDirectDrawClipper_Release
(
pClipper
);
...
...
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