mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
[DINPUT8_WINETEST] Sync with Wine Staging 4.18. CORE-16441
This commit is contained in:
parent
51e134cd76
commit
2a2da29038
6 changed files with 1570 additions and 0 deletions
|
@ -27,6 +27,7 @@ add_subdirectory(d3dcompiler_43)
|
|||
add_subdirectory(d3drm)
|
||||
add_subdirectory(devenum)
|
||||
add_subdirectory(dinput)
|
||||
add_subdirectory(dinput8)
|
||||
add_subdirectory(dnsapi)
|
||||
add_subdirectory(dplayx)
|
||||
add_subdirectory(dsound)
|
||||
|
|
9
modules/rostests/winetests/dinput8/CMakeLists.txt
Normal file
9
modules/rostests/winetests/dinput8/CMakeLists.txt
Normal file
|
@ -0,0 +1,9 @@
|
|||
|
||||
add_definitions(-DUSE_WINE_TODOS )
|
||||
list(APPEND SOURCE device.c dinput.c precomp.h)
|
||||
add_executable(dinput8_winetest ${SOURCE} testlist.c)
|
||||
target_link_libraries(dinput8_winetest dinput_data_formats)
|
||||
set_module_type(dinput8_winetest win32cui)
|
||||
add_importlibs(dinput8_winetest dinput8 ole32 user32 advapi32 msvcrt kernel32)
|
||||
add_pch(dinput8_winetest precomp.h SOURCE)
|
||||
add_rostests_file(TARGET dinput8_winetest)
|
804
modules/rostests/winetests/dinput8/device.c
Normal file
804
modules/rostests/winetests/dinput8/device.c
Normal file
|
@ -0,0 +1,804 @@
|
|||
/*
|
||||
* Copyright (c) 2011 Lucas Fialho Zawacki
|
||||
* Copyright (c) 2006 Vitaliy Margolen
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#define DIRECTINPUT_VERSION 0x0800
|
||||
|
||||
#define COBJMACROS
|
||||
#include <windows.h>
|
||||
|
||||
#include "wine/test.h"
|
||||
#include "windef.h"
|
||||
#include "dinput.h"
|
||||
|
||||
struct enum_data {
|
||||
IDirectInput8A *pDI;
|
||||
DIACTIONFORMATA *lpdiaf;
|
||||
IDirectInputDevice8A *keyboard;
|
||||
IDirectInputDevice8A *mouse;
|
||||
const char* username;
|
||||
int ndevices;
|
||||
};
|
||||
|
||||
/* Dummy GUID */
|
||||
static const GUID ACTION_MAPPING_GUID = { 0x1, 0x2, 0x3, { 0x4, 0x5, 0x6, 0x7, 0x8, 0x9, 0xa, 0xb } };
|
||||
|
||||
static const GUID NULL_GUID = { 0, 0, 0, { 0, 0, 0, 0, 0, 0, 0, 0 } };
|
||||
|
||||
enum {
|
||||
DITEST_AXIS,
|
||||
DITEST_BUTTON,
|
||||
DITEST_KEYBOARDSPACE,
|
||||
DITEST_MOUSEBUTTON0,
|
||||
DITEST_YAXIS
|
||||
};
|
||||
|
||||
static DIACTIONA actionMapping[]=
|
||||
{
|
||||
/* axis */
|
||||
{ 0, 0x01008A01 /* DIAXIS_DRIVINGR_STEER */, 0, { "Steer.\0" } },
|
||||
/* button */
|
||||
{ 1, 0x01000C01 /* DIBUTTON_DRIVINGR_SHIFTUP */, 0, { "Upshift.\0" } },
|
||||
/* keyboard key */
|
||||
{ 2, DIKEYBOARD_SPACE, 0, { "Missile.\0" } },
|
||||
/* mouse button */
|
||||
{ 3, DIMOUSE_BUTTON0, 0, { "Select\0" } },
|
||||
/* mouse axis */
|
||||
{ 4, DIMOUSE_YAXIS, 0, { "Y Axis\0" } }
|
||||
};
|
||||
/* By placing the memory pointed to by lptszActionName right before memory with PAGE_NOACCESS
|
||||
* one can find out that the regular ansi string termination is not respected by EnumDevicesBySemantics.
|
||||
* Adding a double termination, making it a valid wide string termination, made the test succeed.
|
||||
* Therefore it looks like ansi version of EnumDevicesBySemantics forwards the string to
|
||||
* the wide variant without conversation. */
|
||||
|
||||
static void flush_events(void)
|
||||
{
|
||||
int diff = 200;
|
||||
int min_timeout = 100;
|
||||
DWORD time = GetTickCount() + diff;
|
||||
|
||||
while (diff > 0)
|
||||
{
|
||||
if (MsgWaitForMultipleObjects(0, NULL, FALSE, min_timeout, QS_ALLINPUT) == WAIT_TIMEOUT)
|
||||
break;
|
||||
diff = time - GetTickCount();
|
||||
min_timeout = 50;
|
||||
}
|
||||
}
|
||||
|
||||
static void test_device_input(IDirectInputDevice8A *lpdid, DWORD event_type, DWORD event, DWORD expected)
|
||||
{
|
||||
HRESULT hr;
|
||||
DIDEVICEOBJECTDATA obj_data;
|
||||
DWORD data_size = 1;
|
||||
int i;
|
||||
|
||||
hr = IDirectInputDevice8_Acquire(lpdid);
|
||||
ok (SUCCEEDED(hr), "Failed to acquire device hr=%08x\n", hr);
|
||||
|
||||
if (event_type == INPUT_KEYBOARD)
|
||||
keybd_event( event, DIK_SPACE, 0, 0);
|
||||
|
||||
if (event_type == INPUT_MOUSE)
|
||||
mouse_event( event, 0, 0, 0, 0);
|
||||
|
||||
flush_events();
|
||||
IDirectInputDevice8_Poll(lpdid);
|
||||
hr = IDirectInputDevice8_GetDeviceData(lpdid, sizeof(obj_data), &obj_data, &data_size, 0);
|
||||
|
||||
if (data_size != 1)
|
||||
{
|
||||
win_skip("We're not able to inject input into Windows dinput8 with events\n");
|
||||
IDirectInputDevice_Unacquire(lpdid);
|
||||
return;
|
||||
}
|
||||
|
||||
ok (obj_data.uAppData == expected, "Retrieval of action failed uAppData=%lu expected=%d\n", obj_data.uAppData, expected);
|
||||
|
||||
/* Check for buffer overflow */
|
||||
for (i = 0; i < 17; i++)
|
||||
if (event_type == INPUT_KEYBOARD)
|
||||
{
|
||||
keybd_event( VK_SPACE, DIK_SPACE, 0, 0);
|
||||
keybd_event( VK_SPACE, DIK_SPACE, KEYEVENTF_KEYUP, 0);
|
||||
}
|
||||
else if (event_type == INPUT_MOUSE)
|
||||
{
|
||||
mouse_event(MOUSEEVENTF_LEFTDOWN, 1, 1, 0, 0);
|
||||
mouse_event(MOUSEEVENTF_LEFTUP, 1, 1, 0, 0);
|
||||
}
|
||||
|
||||
flush_events();
|
||||
IDirectInputDevice8_Poll(lpdid);
|
||||
|
||||
data_size = 1;
|
||||
hr = IDirectInputDevice8_GetDeviceData(lpdid, sizeof(obj_data), &obj_data, &data_size, 0);
|
||||
ok(hr == DI_BUFFEROVERFLOW, "GetDeviceData() failed: %08x\n", hr);
|
||||
data_size = 1;
|
||||
hr = IDirectInputDevice8_GetDeviceData(lpdid, sizeof(obj_data), &obj_data, &data_size, 0);
|
||||
ok(hr == DI_OK && data_size == 1, "GetDeviceData() failed: %08x cnt:%d\n", hr, data_size);
|
||||
|
||||
IDirectInputDevice_Unacquire(lpdid);
|
||||
}
|
||||
|
||||
static void test_build_action_map(IDirectInputDevice8A *lpdid, DIACTIONFORMATA *lpdiaf,
|
||||
int action_index, DWORD expected_type, DWORD expected_inst)
|
||||
{
|
||||
HRESULT hr;
|
||||
DIACTIONA *actions;
|
||||
DWORD instance, type, how;
|
||||
GUID assigned_to;
|
||||
DIDEVICEINSTANCEA ddi;
|
||||
|
||||
ddi.dwSize = sizeof(ddi);
|
||||
IDirectInputDevice_GetDeviceInfo(lpdid, &ddi);
|
||||
|
||||
hr = IDirectInputDevice8_BuildActionMap(lpdid, lpdiaf, NULL, DIDBAM_HWDEFAULTS);
|
||||
ok (SUCCEEDED(hr), "BuildActionMap failed hr=%08x\n", hr);
|
||||
|
||||
actions = lpdiaf->rgoAction;
|
||||
instance = DIDFT_GETINSTANCE(actions[action_index].dwObjID);
|
||||
type = DIDFT_GETTYPE(actions[action_index].dwObjID);
|
||||
how = actions[action_index].dwHow;
|
||||
assigned_to = actions[action_index].guidInstance;
|
||||
|
||||
ok (how == DIAH_USERCONFIG || how == DIAH_DEFAULT, "Action was not set dwHow=%08x\n", how);
|
||||
ok (instance == expected_inst, "Action not mapped correctly instance=%08x expected=%08x\n", instance, expected_inst);
|
||||
ok (type == expected_type, "Action type not mapped correctly type=%08x expected=%08x\n", type, expected_type);
|
||||
ok (IsEqualGUID(&assigned_to, &ddi.guidInstance), "Action and device GUID do not match action=%d\n", action_index);
|
||||
}
|
||||
|
||||
static BOOL CALLBACK enumeration_callback(const DIDEVICEINSTANCEA *lpddi, IDirectInputDevice8A *lpdid,
|
||||
DWORD dwFlags, DWORD dwRemaining, LPVOID pvRef)
|
||||
{
|
||||
HRESULT hr;
|
||||
DIPROPDWORD dp;
|
||||
DIPROPRANGE dpr;
|
||||
DIPROPSTRING dps;
|
||||
WCHAR usernameW[MAX_PATH];
|
||||
DWORD username_size = MAX_PATH;
|
||||
struct enum_data *data = pvRef;
|
||||
DWORD cnt;
|
||||
DIDEVICEOBJECTDATA buffer[5];
|
||||
IDirectInputDevice8A *lpdid2;
|
||||
|
||||
if (!data) return DIENUM_CONTINUE;
|
||||
|
||||
data->ndevices++;
|
||||
|
||||
/* Convert username to WCHAR */
|
||||
if (data->username != NULL)
|
||||
{
|
||||
username_size = MultiByteToWideChar(CP_ACP, 0, data->username, -1, usernameW, 0);
|
||||
MultiByteToWideChar(CP_ACP, 0, data->username, -1, usernameW, username_size);
|
||||
}
|
||||
else
|
||||
GetUserNameW(usernameW, &username_size);
|
||||
|
||||
/* collect the mouse and keyboard */
|
||||
if (IsEqualGUID(&lpddi->guidInstance, &GUID_SysKeyboard))
|
||||
{
|
||||
IDirectInputDevice_AddRef(lpdid);
|
||||
data->keyboard = lpdid;
|
||||
|
||||
ok (dwFlags & DIEDBS_MAPPEDPRI1, "Keyboard should be mapped as pri1 dwFlags=%08x\n", dwFlags);
|
||||
}
|
||||
|
||||
if (IsEqualGUID(&lpddi->guidInstance, &GUID_SysMouse))
|
||||
{
|
||||
IDirectInputDevice_AddRef(lpdid);
|
||||
data->mouse = lpdid;
|
||||
|
||||
ok (dwFlags & DIEDBS_MAPPEDPRI1, "Mouse should be mapped as pri1 dwFlags=%08x\n", dwFlags);
|
||||
}
|
||||
|
||||
/* Creating second device object to check if it has the same username */
|
||||
hr = IDirectInput_CreateDevice(data->pDI, &lpddi->guidInstance, &lpdid2, NULL);
|
||||
ok(SUCCEEDED(hr), "IDirectInput_CreateDevice() failed: %08x\n", hr);
|
||||
|
||||
/* Building and setting an action map */
|
||||
/* It should not use any pre-stored mappings so we use DIDBAM_HWDEFAULTS */
|
||||
hr = IDirectInputDevice8_BuildActionMap(lpdid, data->lpdiaf, NULL, DIDBAM_HWDEFAULTS);
|
||||
ok (SUCCEEDED(hr), "BuildActionMap failed hr=%08x\n", hr);
|
||||
|
||||
/* Device has no data format and thus can't be acquired */
|
||||
hr = IDirectInputDevice8_Acquire(lpdid);
|
||||
ok (hr == DIERR_INVALIDPARAM, "Device was acquired before SetActionMap hr=%08x\n", hr);
|
||||
|
||||
hr = IDirectInputDevice8_SetActionMap(lpdid, data->lpdiaf, data->username, 0);
|
||||
ok (SUCCEEDED(hr), "SetActionMap failed hr=%08x\n", hr);
|
||||
|
||||
/* Some joysticks may have no suitable actions and thus should not be tested */
|
||||
if (hr == DI_NOEFFECT) return DIENUM_CONTINUE;
|
||||
|
||||
/* Test username after SetActionMap */
|
||||
dps.diph.dwSize = sizeof(dps);
|
||||
dps.diph.dwHeaderSize = sizeof(DIPROPHEADER);
|
||||
dps.diph.dwObj = 0;
|
||||
dps.diph.dwHow = DIPH_DEVICE;
|
||||
dps.wsz[0] = '\0';
|
||||
|
||||
hr = IDirectInputDevice_GetProperty(lpdid, DIPROP_USERNAME, &dps.diph);
|
||||
ok (SUCCEEDED(hr), "GetProperty failed hr=%08x\n", hr);
|
||||
ok (!lstrcmpW(usernameW, dps.wsz), "Username not set correctly expected=%s, got=%s\n", wine_dbgstr_w(usernameW), wine_dbgstr_w(dps.wsz));
|
||||
|
||||
dps.wsz[0] = '\0';
|
||||
hr = IDirectInputDevice_GetProperty(lpdid2, DIPROP_USERNAME, &dps.diph);
|
||||
ok (SUCCEEDED(hr), "GetProperty failed hr=%08x\n", hr);
|
||||
ok (!lstrcmpW(usernameW, dps.wsz), "Username not set correctly expected=%s, got=%s\n", wine_dbgstr_w(usernameW), wine_dbgstr_w(dps.wsz));
|
||||
|
||||
/* Test buffer size */
|
||||
memset(&dp, 0, sizeof(dp));
|
||||
dp.diph.dwSize = sizeof(dp);
|
||||
dp.diph.dwHeaderSize = sizeof(DIPROPHEADER);
|
||||
dp.diph.dwHow = DIPH_DEVICE;
|
||||
|
||||
hr = IDirectInputDevice_GetProperty(lpdid, DIPROP_BUFFERSIZE, &dp.diph);
|
||||
ok (SUCCEEDED(hr), "GetProperty failed hr=%08x\n", hr);
|
||||
ok (dp.dwData == data->lpdiaf->dwBufferSize, "SetActionMap must set the buffer, buffersize=%d\n", dp.dwData);
|
||||
|
||||
cnt = 1;
|
||||
hr = IDirectInputDevice_GetDeviceData(lpdid, sizeof(buffer[0]), buffer, &cnt, 0);
|
||||
ok(hr == DIERR_NOTACQUIRED, "GetDeviceData() failed hr=%08x\n", hr);
|
||||
|
||||
/* Test axis range */
|
||||
memset(&dpr, 0, sizeof(dpr));
|
||||
dpr.diph.dwSize = sizeof(dpr);
|
||||
dpr.diph.dwHeaderSize = sizeof(DIPROPHEADER);
|
||||
dpr.diph.dwHow = DIPH_DEVICE;
|
||||
|
||||
hr = IDirectInputDevice_GetProperty(lpdid, DIPROP_RANGE, &dpr.diph);
|
||||
/* Only test if device supports the range property */
|
||||
if (SUCCEEDED(hr))
|
||||
{
|
||||
ok (dpr.lMin == data->lpdiaf->lAxisMin, "SetActionMap must set the min axis range expected=%d got=%d\n", data->lpdiaf->lAxisMin, dpr.lMin);
|
||||
ok (dpr.lMax == data->lpdiaf->lAxisMax, "SetActionMap must set the max axis range expected=%d got=%d\n", data->lpdiaf->lAxisMax, dpr.lMax);
|
||||
}
|
||||
|
||||
/* SetActionMap has set the data format so now it should work */
|
||||
hr = IDirectInputDevice8_Acquire(lpdid);
|
||||
ok (SUCCEEDED(hr), "Acquire failed hr=%08x\n", hr);
|
||||
|
||||
cnt = 1;
|
||||
hr = IDirectInputDevice_GetDeviceData(lpdid, sizeof(buffer[0]), buffer, &cnt, 0);
|
||||
ok(hr == DI_OK, "GetDeviceData() failed hr=%08x\n", hr);
|
||||
|
||||
/* SetActionMap should not work on an acquired device */
|
||||
hr = IDirectInputDevice8_SetActionMap(lpdid, data->lpdiaf, NULL, 0);
|
||||
ok (hr == DIERR_ACQUIRED, "SetActionMap succeeded with an acquired device hr=%08x\n", hr);
|
||||
|
||||
IDirectInputDevice_Release(lpdid2);
|
||||
|
||||
return DIENUM_CONTINUE;
|
||||
}
|
||||
|
||||
static void test_action_mapping(void)
|
||||
{
|
||||
HRESULT hr;
|
||||
HINSTANCE hinst = GetModuleHandleA(NULL);
|
||||
IDirectInput8A *pDI = NULL;
|
||||
DIACTIONFORMATA af;
|
||||
DIPROPSTRING dps;
|
||||
struct enum_data data = {pDI, &af, NULL, NULL, NULL, 0};
|
||||
HWND hwnd;
|
||||
|
||||
hr = CoCreateInstance(&CLSID_DirectInput8, 0, CLSCTX_INPROC_SERVER, &IID_IDirectInput8A, (LPVOID*)&pDI);
|
||||
if (hr == DIERR_OLDDIRECTINPUTVERSION ||
|
||||
hr == DIERR_BETADIRECTINPUTVERSION ||
|
||||
hr == REGDB_E_CLASSNOTREG)
|
||||
{
|
||||
win_skip("ActionMapping requires dinput8\n");
|
||||
return;
|
||||
}
|
||||
ok(SUCCEEDED(hr), "DirectInput8 Create failed: hr=%08x\n", hr);
|
||||
if (FAILED(hr)) return;
|
||||
|
||||
hr = IDirectInput8_Initialize(pDI,hinst, DIRECTINPUT_VERSION);
|
||||
if (hr == DIERR_OLDDIRECTINPUTVERSION || hr == DIERR_BETADIRECTINPUTVERSION)
|
||||
{
|
||||
win_skip("ActionMapping requires dinput8\n");
|
||||
return;
|
||||
}
|
||||
ok(SUCCEEDED(hr), "DirectInput8 Initialize failed: hr=%08x\n", hr);
|
||||
if (FAILED(hr)) return;
|
||||
|
||||
memset (&af, 0, sizeof(af));
|
||||
af.dwSize = sizeof(af);
|
||||
af.dwActionSize = sizeof(DIACTIONA);
|
||||
af.dwDataSize = 4 * ARRAY_SIZE(actionMapping);
|
||||
af.dwNumActions = ARRAY_SIZE(actionMapping);
|
||||
af.rgoAction = actionMapping;
|
||||
af.guidActionMap = ACTION_MAPPING_GUID;
|
||||
af.dwGenre = 0x01000000; /* DIVIRTUAL_DRIVING_RACE */
|
||||
af.dwBufferSize = 32;
|
||||
|
||||
/* This enumeration builds and sets the action map for all devices */
|
||||
data.pDI = pDI;
|
||||
hr = IDirectInput8_EnumDevicesBySemantics(pDI, 0, &af, enumeration_callback, &data, DIEDBSFL_ATTACHEDONLY);
|
||||
ok (SUCCEEDED(hr), "EnumDevicesBySemantics failed: hr=%08x\n", hr);
|
||||
|
||||
if (data.keyboard)
|
||||
IDirectInputDevice_Release(data.keyboard);
|
||||
|
||||
if (data.mouse)
|
||||
IDirectInputDevice_Release(data.mouse);
|
||||
|
||||
/* Repeat tests with a non NULL user */
|
||||
data.username = "Ninja Brian";
|
||||
hr = IDirectInput8_EnumDevicesBySemantics(pDI, NULL, &af, enumeration_callback, &data, DIEDBSFL_ATTACHEDONLY);
|
||||
ok (SUCCEEDED(hr), "EnumDevicesBySemantics failed: hr=%08x\n", hr);
|
||||
|
||||
hwnd = CreateWindowExA(WS_EX_TOPMOST, "static", "dinput",
|
||||
WS_POPUP | WS_VISIBLE, 0, 0, 100, 100, NULL, NULL, NULL, NULL);
|
||||
ok(hwnd != NULL, "failed to create window\n");
|
||||
SetCursorPos(50, 50);
|
||||
|
||||
if (data.keyboard != NULL)
|
||||
{
|
||||
/* Test keyboard BuildActionMap */
|
||||
test_build_action_map(data.keyboard, data.lpdiaf, DITEST_KEYBOARDSPACE, DIDFT_PSHBUTTON, DIK_SPACE);
|
||||
/* Test keyboard input */
|
||||
test_device_input(data.keyboard, INPUT_KEYBOARD, VK_SPACE, 2);
|
||||
|
||||
/* Test BuildActionMap with no suitable actions for a device */
|
||||
IDirectInputDevice_Unacquire(data.keyboard);
|
||||
af.dwDataSize = 4 * DITEST_KEYBOARDSPACE;
|
||||
af.dwNumActions = DITEST_KEYBOARDSPACE;
|
||||
|
||||
hr = IDirectInputDevice8_BuildActionMap(data.keyboard, data.lpdiaf, NULL, DIDBAM_HWDEFAULTS);
|
||||
ok (hr == DI_NOEFFECT, "BuildActionMap should have no effect with no actions hr=%08x\n", hr);
|
||||
|
||||
hr = IDirectInputDevice8_SetActionMap(data.keyboard, data.lpdiaf, NULL, 0);
|
||||
ok (hr == DI_NOEFFECT, "SetActionMap should have no effect with no actions to map hr=%08x\n", hr);
|
||||
|
||||
/* Test that after changing actionformat SetActionMap has effect and that second
|
||||
* SetActionMap call with same empty actionformat has no effect */
|
||||
af.dwDataSize = 4 * 1;
|
||||
af.dwNumActions = 1;
|
||||
|
||||
hr = IDirectInputDevice8_SetActionMap(data.keyboard, data.lpdiaf, NULL, 0);
|
||||
ok (hr != DI_NOEFFECT, "SetActionMap should have effect as actionformat has changed hr=%08x\n", hr);
|
||||
|
||||
hr = IDirectInputDevice8_SetActionMap(data.keyboard, data.lpdiaf, NULL, 0);
|
||||
ok (hr == DI_NOEFFECT, "SetActionMap should have no effect with no actions to map hr=%08x\n", hr);
|
||||
|
||||
af.dwDataSize = 4 * ARRAY_SIZE(actionMapping);
|
||||
af.dwNumActions = ARRAY_SIZE(actionMapping);
|
||||
|
||||
/* test DIDSAM_NOUSER */
|
||||
dps.diph.dwSize = sizeof(dps);
|
||||
dps.diph.dwHeaderSize = sizeof(DIPROPHEADER);
|
||||
dps.diph.dwObj = 0;
|
||||
dps.diph.dwHow = DIPH_DEVICE;
|
||||
dps.wsz[0] = '\0';
|
||||
|
||||
hr = IDirectInputDevice_GetProperty(data.keyboard, DIPROP_USERNAME, &dps.diph);
|
||||
ok (SUCCEEDED(hr), "GetProperty failed hr=%08x\n", hr);
|
||||
ok (dps.wsz[0] != 0, "Expected any username, got=%s\n", wine_dbgstr_w(dps.wsz));
|
||||
|
||||
hr = IDirectInputDevice8_SetActionMap(data.keyboard, data.lpdiaf, NULL, DIDSAM_NOUSER);
|
||||
ok (SUCCEEDED(hr), "SetActionMap failed hr=%08x\n", hr);
|
||||
|
||||
dps.diph.dwSize = sizeof(dps);
|
||||
dps.diph.dwHeaderSize = sizeof(DIPROPHEADER);
|
||||
dps.diph.dwObj = 0;
|
||||
dps.diph.dwHow = DIPH_DEVICE;
|
||||
dps.wsz[0] = '\0';
|
||||
|
||||
hr = IDirectInputDevice_GetProperty(data.keyboard, DIPROP_USERNAME, &dps.diph);
|
||||
ok (SUCCEEDED(hr), "GetProperty failed hr=%08x\n", hr);
|
||||
ok (dps.wsz[0] == 0, "Expected empty username, got=%s\n", wine_dbgstr_w(dps.wsz));
|
||||
|
||||
IDirectInputDevice_Release(data.keyboard);
|
||||
}
|
||||
|
||||
if (data.mouse != NULL)
|
||||
{
|
||||
/* Test mouse BuildActionMap */
|
||||
test_build_action_map(data.mouse, data.lpdiaf, DITEST_MOUSEBUTTON0, DIDFT_PSHBUTTON, 0x03);
|
||||
test_build_action_map(data.mouse, data.lpdiaf, DITEST_YAXIS, DIDFT_RELAXIS, 0x01);
|
||||
|
||||
test_device_input(data.mouse, INPUT_MOUSE, MOUSEEVENTF_LEFTDOWN, 3);
|
||||
|
||||
IDirectInputDevice_Release(data.mouse);
|
||||
}
|
||||
|
||||
DestroyWindow(hwnd);
|
||||
IDirectInput_Release(pDI);
|
||||
}
|
||||
|
||||
static void test_save_settings(void)
|
||||
{
|
||||
HRESULT hr;
|
||||
HINSTANCE hinst = GetModuleHandleA(NULL);
|
||||
IDirectInput8A *pDI = NULL;
|
||||
DIACTIONFORMATA af;
|
||||
IDirectInputDevice8A *pKey;
|
||||
|
||||
static const GUID mapping_guid = { 0xcafecafe, 0x2, 0x3, { 0x4, 0x5, 0x6, 0x7, 0x8, 0x9, 0xa, 0xb } };
|
||||
static const GUID other_guid = { 0xcafe, 0xcafe, 0x3, { 0x4, 0x5, 0x6, 0x7, 0x8, 0x9, 0xa, 0xb } };
|
||||
|
||||
static DIACTIONA actions[] = {
|
||||
{ 0, DIKEYBOARD_A , 0, { "Blam" } },
|
||||
{ 1, DIKEYBOARD_B , 0, { "Kapow"} }
|
||||
};
|
||||
static const DWORD results[] = {
|
||||
DIDFT_MAKEINSTANCE(DIK_A) | DIDFT_PSHBUTTON,
|
||||
DIDFT_MAKEINSTANCE(DIK_B) | DIDFT_PSHBUTTON
|
||||
};
|
||||
static const DWORD other_results[] = {
|
||||
DIDFT_MAKEINSTANCE(DIK_C) | DIDFT_PSHBUTTON,
|
||||
DIDFT_MAKEINSTANCE(DIK_D) | DIDFT_PSHBUTTON
|
||||
};
|
||||
|
||||
hr = CoCreateInstance(&CLSID_DirectInput8, 0, CLSCTX_INPROC_SERVER, &IID_IDirectInput8A, (LPVOID*)&pDI);
|
||||
if (hr == DIERR_OLDDIRECTINPUTVERSION ||
|
||||
hr == DIERR_BETADIRECTINPUTVERSION ||
|
||||
hr == REGDB_E_CLASSNOTREG)
|
||||
{
|
||||
win_skip("ActionMapping requires dinput8\n");
|
||||
return;
|
||||
}
|
||||
ok (SUCCEEDED(hr), "DirectInput8 Create failed: hr=%08x\n", hr);
|
||||
if (FAILED(hr)) return;
|
||||
|
||||
hr = IDirectInput8_Initialize(pDI,hinst, DIRECTINPUT_VERSION);
|
||||
if (hr == DIERR_OLDDIRECTINPUTVERSION || hr == DIERR_BETADIRECTINPUTVERSION)
|
||||
{
|
||||
win_skip("ActionMapping requires dinput8\n");
|
||||
return;
|
||||
}
|
||||
ok (SUCCEEDED(hr), "DirectInput8 Initialize failed: hr=%08x\n", hr);
|
||||
if (FAILED(hr)) return;
|
||||
|
||||
hr = IDirectInput_CreateDevice(pDI, &GUID_SysKeyboard, &pKey, NULL);
|
||||
ok (SUCCEEDED(hr), "IDirectInput_Create device failed hr: 0x%08x\n", hr);
|
||||
if (FAILED(hr)) return;
|
||||
|
||||
memset (&af, 0, sizeof(af));
|
||||
af.dwSize = sizeof(af);
|
||||
af.dwActionSize = sizeof(DIACTIONA);
|
||||
af.dwDataSize = 4 * ARRAY_SIZE(actions);
|
||||
af.dwNumActions = ARRAY_SIZE(actions);
|
||||
af.rgoAction = actions;
|
||||
af.guidActionMap = mapping_guid;
|
||||
af.dwGenre = 0x01000000; /* DIVIRTUAL_DRIVING_RACE */
|
||||
af.dwBufferSize = 32;
|
||||
|
||||
/* Easy case. Ask for default mapping, save, ask for previous map and read it back */
|
||||
hr = IDirectInputDevice8_BuildActionMap(pKey, &af, NULL, DIDBAM_HWDEFAULTS);
|
||||
ok (SUCCEEDED(hr), "BuildActionMap failed hr=%08x\n", hr);
|
||||
ok (results[0] == af.rgoAction[0].dwObjID,
|
||||
"Mapped incorrectly expected: 0x%08x got: 0x%08x\n", results[0], af.rgoAction[0].dwObjID);
|
||||
|
||||
ok (results[1] == af.rgoAction[1].dwObjID,
|
||||
"Mapped incorrectly expected: 0x%08x got: 0x%08x\n", results[1], af.rgoAction[1].dwObjID);
|
||||
|
||||
hr = IDirectInputDevice8_SetActionMap(pKey, &af, NULL, DIDSAM_FORCESAVE);
|
||||
ok (SUCCEEDED(hr), "SetActionMap failed hr=%08x\n", hr);
|
||||
|
||||
if (hr == DI_SETTINGSNOTSAVED)
|
||||
{
|
||||
skip ("Can't test saving settings if SetActionMap returns DI_SETTINGSNOTSAVED\n");
|
||||
return;
|
||||
}
|
||||
|
||||
af.rgoAction[0].dwObjID = 0;
|
||||
af.rgoAction[1].dwObjID = 0;
|
||||
memset(&af.rgoAction[0].guidInstance, 0, sizeof(GUID));
|
||||
memset(&af.rgoAction[1].guidInstance, 0, sizeof(GUID));
|
||||
|
||||
hr = IDirectInputDevice8_BuildActionMap(pKey, &af, NULL, 0);
|
||||
ok (SUCCEEDED(hr), "BuildActionMap failed hr=%08x\n", hr);
|
||||
|
||||
ok (results[0] == af.rgoAction[0].dwObjID,
|
||||
"Mapped incorrectly expected: 0x%08x got: 0x%08x\n", results[0], af.rgoAction[0].dwObjID);
|
||||
ok (IsEqualGUID(&GUID_SysKeyboard, &af.rgoAction[0].guidInstance), "Action should be mapped to keyboard\n");
|
||||
|
||||
ok (results[1] == af.rgoAction[1].dwObjID,
|
||||
"Mapped incorrectly expected: 0x%08x got: 0x%08x\n", results[1], af.rgoAction[1].dwObjID);
|
||||
ok (IsEqualGUID(&GUID_SysKeyboard, &af.rgoAction[1].guidInstance), "Action should be mapped to keyboard\n");
|
||||
|
||||
/* Test that a different action map with no pre-stored settings, in spite of the flags,
|
||||
does not try to load mappings and instead applies the default mapping */
|
||||
af.guidActionMap = other_guid;
|
||||
|
||||
af.rgoAction[0].dwObjID = 0;
|
||||
af.rgoAction[1].dwObjID = 0;
|
||||
memset(&af.rgoAction[0].guidInstance, 0, sizeof(GUID));
|
||||
memset(&af.rgoAction[1].guidInstance, 0, sizeof(GUID));
|
||||
|
||||
hr = IDirectInputDevice8_BuildActionMap(pKey, &af, NULL, 0);
|
||||
ok (SUCCEEDED(hr), "BuildActionMap failed hr=%08x\n", hr);
|
||||
|
||||
ok (results[0] == af.rgoAction[0].dwObjID,
|
||||
"Mapped incorrectly expected: 0x%08x got: 0x%08x\n", results[0], af.rgoAction[0].dwObjID);
|
||||
ok (IsEqualGUID(&GUID_SysKeyboard, &af.rgoAction[0].guidInstance), "Action should be mapped to keyboard\n");
|
||||
|
||||
ok (results[1] == af.rgoAction[1].dwObjID,
|
||||
"Mapped incorrectly expected: 0x%08x got: 0x%08x\n", results[1], af.rgoAction[1].dwObjID);
|
||||
ok (IsEqualGUID(&GUID_SysKeyboard, &af.rgoAction[1].guidInstance), "Action should be mapped to keyboard\n");
|
||||
|
||||
af.guidActionMap = mapping_guid;
|
||||
/* Hard case. Customized mapping, save, ask for previous map and read it back */
|
||||
af.rgoAction[0].dwObjID = other_results[0];
|
||||
af.rgoAction[0].dwHow = DIAH_USERCONFIG;
|
||||
af.rgoAction[0].guidInstance = GUID_SysKeyboard;
|
||||
af.rgoAction[1].dwObjID = other_results[1];
|
||||
af.rgoAction[1].dwHow = DIAH_USERCONFIG;
|
||||
af.rgoAction[1].guidInstance = GUID_SysKeyboard;
|
||||
|
||||
hr = IDirectInputDevice8_SetActionMap(pKey, &af, NULL, DIDSAM_FORCESAVE);
|
||||
ok (SUCCEEDED(hr), "SetActionMap failed hr=%08x\n", hr);
|
||||
|
||||
if (hr == DI_SETTINGSNOTSAVED)
|
||||
{
|
||||
skip ("Can't test saving settings if SetActionMap returns DI_SETTINGSNOTSAVED\n");
|
||||
return;
|
||||
}
|
||||
|
||||
af.rgoAction[0].dwObjID = 0;
|
||||
af.rgoAction[1].dwObjID = 0;
|
||||
memset(&af.rgoAction[0].guidInstance, 0, sizeof(GUID));
|
||||
memset(&af.rgoAction[1].guidInstance, 0, sizeof(GUID));
|
||||
|
||||
hr = IDirectInputDevice8_BuildActionMap(pKey, &af, NULL, 0);
|
||||
ok (SUCCEEDED(hr), "BuildActionMap failed hr=%08x\n", hr);
|
||||
|
||||
ok (other_results[0] == af.rgoAction[0].dwObjID,
|
||||
"Mapped incorrectly expected: 0x%08x got: 0x%08x\n", other_results[0], af.rgoAction[0].dwObjID);
|
||||
ok (IsEqualGUID(&GUID_SysKeyboard, &af.rgoAction[0].guidInstance), "Action should be mapped to keyboard\n");
|
||||
|
||||
ok (other_results[1] == af.rgoAction[1].dwObjID,
|
||||
"Mapped incorrectly expected: 0x%08x got: 0x%08x\n", other_results[1], af.rgoAction[1].dwObjID);
|
||||
ok (IsEqualGUID(&GUID_SysKeyboard, &af.rgoAction[1].guidInstance), "Action should be mapped to keyboard\n");
|
||||
|
||||
/* Save and load empty mapping */
|
||||
af.rgoAction[0].dwObjID = 0;
|
||||
af.rgoAction[0].dwHow = 0;
|
||||
memset(&af.rgoAction[0].guidInstance, 0, sizeof(GUID));
|
||||
af.rgoAction[1].dwObjID = 0;
|
||||
af.rgoAction[1].dwHow = 0;
|
||||
memset(&af.rgoAction[1].guidInstance, 0, sizeof(GUID));
|
||||
|
||||
hr = IDirectInputDevice8_SetActionMap(pKey, &af, NULL, DIDSAM_FORCESAVE);
|
||||
ok (SUCCEEDED(hr), "SetActionMap failed hr=%08x\n", hr);
|
||||
|
||||
if (hr == DI_SETTINGSNOTSAVED)
|
||||
{
|
||||
skip ("Can't test saving settings if SetActionMap returns DI_SETTINGSNOTSAVED\n");
|
||||
return;
|
||||
}
|
||||
|
||||
af.rgoAction[0].dwObjID = other_results[0];
|
||||
af.rgoAction[0].dwHow = DIAH_USERCONFIG;
|
||||
af.rgoAction[0].guidInstance = GUID_SysKeyboard;
|
||||
af.rgoAction[1].dwObjID = other_results[1];
|
||||
af.rgoAction[1].dwHow = DIAH_USERCONFIG;
|
||||
af.rgoAction[1].guidInstance = GUID_SysKeyboard;
|
||||
|
||||
hr = IDirectInputDevice8_BuildActionMap(pKey, &af, NULL, 0);
|
||||
ok (SUCCEEDED(hr), "BuildActionMap failed hr=%08x\n", hr);
|
||||
|
||||
ok (other_results[0] == af.rgoAction[0].dwObjID,
|
||||
"Mapped incorrectly expected: 0x%08x got: 0x%08x\n", other_results[0], af.rgoAction[0].dwObjID);
|
||||
ok (af.rgoAction[0].dwHow == DIAH_UNMAPPED, "dwHow should have been DIAH_UNMAPPED\n");
|
||||
ok (IsEqualGUID(&NULL_GUID, &af.rgoAction[0].guidInstance), "Action should not be mapped\n");
|
||||
|
||||
ok (other_results[1] == af.rgoAction[1].dwObjID,
|
||||
"Mapped incorrectly expected: 0x%08x got: 0x%08x\n", other_results[1], af.rgoAction[1].dwObjID);
|
||||
ok (af.rgoAction[1].dwHow == DIAH_UNMAPPED, "dwHow should have been DIAH_UNMAPPED\n");
|
||||
ok (IsEqualGUID(&NULL_GUID, &af.rgoAction[1].guidInstance), "Action should not be mapped\n");
|
||||
|
||||
IDirectInputDevice_Release(pKey);
|
||||
IDirectInput_Release(pDI);
|
||||
}
|
||||
|
||||
static void test_mouse_keyboard(void)
|
||||
{
|
||||
HRESULT hr;
|
||||
HWND hwnd, di_hwnd = INVALID_HANDLE_VALUE;
|
||||
IDirectInput8A *di = NULL;
|
||||
IDirectInputDevice8A *di_mouse, *di_keyboard;
|
||||
UINT raw_devices_count;
|
||||
RAWINPUTDEVICE raw_devices[3];
|
||||
|
||||
hwnd = CreateWindowExA(WS_EX_TOPMOST, "static", "dinput", WS_POPUP | WS_VISIBLE, 0, 0, 100, 100, NULL, NULL, NULL, NULL);
|
||||
ok(hwnd != NULL, "CreateWindowExA failed\n");
|
||||
|
||||
hr = CoCreateInstance(&CLSID_DirectInput8, 0, CLSCTX_INPROC_SERVER, &IID_IDirectInput8A, (LPVOID*)&di);
|
||||
if (hr == DIERR_OLDDIRECTINPUTVERSION ||
|
||||
hr == DIERR_BETADIRECTINPUTVERSION ||
|
||||
hr == REGDB_E_CLASSNOTREG)
|
||||
{
|
||||
win_skip("test_mouse_keyboard requires dinput8\n");
|
||||
return;
|
||||
}
|
||||
ok(SUCCEEDED(hr), "DirectInput8Create failed: %08x\n", hr);
|
||||
|
||||
hr = IDirectInput8_Initialize(di, GetModuleHandleA(NULL), DIRECTINPUT_VERSION);
|
||||
if (hr == DIERR_OLDDIRECTINPUTVERSION || hr == DIERR_BETADIRECTINPUTVERSION)
|
||||
{
|
||||
win_skip("test_mouse_keyboard requires dinput8\n");
|
||||
return;
|
||||
}
|
||||
ok(SUCCEEDED(hr), "IDirectInput8_Initialize failed: %08x\n", hr);
|
||||
|
||||
hr = IDirectInput8_CreateDevice(di, &GUID_SysMouse, &di_mouse, NULL);
|
||||
ok(SUCCEEDED(hr), "IDirectInput8_CreateDevice failed: %08x\n", hr);
|
||||
hr = IDirectInputDevice8_SetDataFormat(di_mouse, &c_dfDIMouse);
|
||||
ok(SUCCEEDED(hr), "IDirectInputDevice8_SetDataFormat failed: %08x\n", hr);
|
||||
|
||||
hr = IDirectInput8_CreateDevice(di, &GUID_SysKeyboard, &di_keyboard, NULL);
|
||||
ok(SUCCEEDED(hr), "IDirectInput8_CreateDevice failed: %08x\n", hr);
|
||||
hr = IDirectInputDevice8_SetDataFormat(di_keyboard, &c_dfDIKeyboard);
|
||||
ok(SUCCEEDED(hr), "IDirectInputDevice8_SetDataFormat failed: %08x\n", hr);
|
||||
|
||||
raw_devices_count = ARRAY_SIZE(raw_devices);
|
||||
GetRegisteredRawInputDevices(NULL, &raw_devices_count, sizeof(RAWINPUTDEVICE));
|
||||
todo_wine
|
||||
ok(raw_devices_count == 0, "Unexpected raw devices registered: %d\n", raw_devices_count);
|
||||
|
||||
hr = IDirectInputDevice8_Acquire(di_keyboard);
|
||||
ok(SUCCEEDED(hr), "IDirectInputDevice8_Acquire failed: %08x\n", hr);
|
||||
raw_devices_count = ARRAY_SIZE(raw_devices);
|
||||
memset(raw_devices, 0, sizeof(raw_devices));
|
||||
hr = GetRegisteredRawInputDevices(raw_devices, &raw_devices_count, sizeof(RAWINPUTDEVICE));
|
||||
todo_wine
|
||||
ok(hr == 1, "GetRegisteredRawInputDevices returned %d, raw_devices_count: %d\n", hr, raw_devices_count);
|
||||
todo_wine
|
||||
ok(raw_devices[0].usUsagePage == 1, "Unexpected raw device usage page: %x\n", raw_devices[0].usUsagePage);
|
||||
todo_wine
|
||||
ok(raw_devices[0].usUsage == 6, "Unexpected raw device usage: %x\n", raw_devices[0].usUsage);
|
||||
todo_wine
|
||||
ok(raw_devices[0].dwFlags == RIDEV_INPUTSINK, "Unexpected raw device flags: %x\n", raw_devices[0].dwFlags);
|
||||
todo_wine
|
||||
ok(raw_devices[0].hwndTarget != NULL, "Unexpected raw device target: %p\n", raw_devices[0].hwndTarget);
|
||||
hr = IDirectInputDevice8_Unacquire(di_keyboard);
|
||||
ok(SUCCEEDED(hr), "IDirectInputDevice8_Acquire failed: %08x\n", hr);
|
||||
raw_devices_count = ARRAY_SIZE(raw_devices);
|
||||
GetRegisteredRawInputDevices(NULL, &raw_devices_count, sizeof(RAWINPUTDEVICE));
|
||||
todo_wine
|
||||
ok(raw_devices_count == 0, "Unexpected raw devices registered: %d\n", raw_devices_count);
|
||||
|
||||
if (raw_devices[0].hwndTarget != NULL)
|
||||
{
|
||||
WCHAR di_hwnd_class[] = {'D','I','E','m','W','i','n',0};
|
||||
WCHAR str[16];
|
||||
int i;
|
||||
|
||||
di_hwnd = raw_devices[0].hwndTarget;
|
||||
i = GetClassNameW(di_hwnd, str, ARRAY_SIZE(str));
|
||||
ok(i == lstrlenW(di_hwnd_class), "GetClassName returned incorrect length\n");
|
||||
ok(!lstrcmpW(di_hwnd_class, str), "GetClassName returned incorrect name for this window's class\n");
|
||||
|
||||
i = GetWindowTextW(di_hwnd, str, ARRAY_SIZE(str));
|
||||
ok(i == lstrlenW(di_hwnd_class), "GetClassName returned incorrect length\n");
|
||||
ok(!lstrcmpW(di_hwnd_class, str), "GetClassName returned incorrect name for this window's class\n");
|
||||
}
|
||||
|
||||
hr = IDirectInputDevice8_Acquire(di_mouse);
|
||||
ok(SUCCEEDED(hr), "IDirectInputDevice8_Acquire failed: %08x\n", hr);
|
||||
raw_devices_count = ARRAY_SIZE(raw_devices);
|
||||
memset(raw_devices, 0, sizeof(raw_devices));
|
||||
hr = GetRegisteredRawInputDevices(raw_devices, &raw_devices_count, sizeof(RAWINPUTDEVICE));
|
||||
todo_wine
|
||||
ok(hr == 1, "GetRegisteredRawInputDevices returned %d, raw_devices_count: %d\n", hr, raw_devices_count);
|
||||
todo_wine
|
||||
ok(raw_devices[0].usUsagePage == 1, "Unexpected raw device usage page: %x\n", raw_devices[0].usUsagePage);
|
||||
todo_wine
|
||||
ok(raw_devices[0].usUsage == 2, "Unexpected raw device usage: %x\n", raw_devices[0].usUsage);
|
||||
todo_wine
|
||||
ok(raw_devices[0].dwFlags == RIDEV_INPUTSINK, "Unexpected raw device flags: %x\n", raw_devices[0].dwFlags);
|
||||
todo_wine
|
||||
ok(raw_devices[0].hwndTarget == di_hwnd, "Unexpected raw device target: %p\n", raw_devices[0].hwndTarget);
|
||||
hr = IDirectInputDevice8_Unacquire(di_mouse);
|
||||
ok(SUCCEEDED(hr), "IDirectInputDevice8_Acquire failed: %08x\n", hr);
|
||||
raw_devices_count = ARRAY_SIZE(raw_devices);
|
||||
GetRegisteredRawInputDevices(NULL, &raw_devices_count, sizeof(RAWINPUTDEVICE));
|
||||
todo_wine
|
||||
ok(raw_devices_count == 0, "Unexpected raw devices registered: %d\n", raw_devices_count);
|
||||
|
||||
/* expect dinput8 to take over any activated raw input devices */
|
||||
raw_devices[0].usUsagePage = 0x01;
|
||||
raw_devices[0].usUsage = 0x05;
|
||||
raw_devices[0].dwFlags = 0;
|
||||
raw_devices[0].hwndTarget = hwnd;
|
||||
raw_devices[1].usUsagePage = 0x01;
|
||||
raw_devices[1].usUsage = 0x06;
|
||||
raw_devices[1].dwFlags = 0;
|
||||
raw_devices[1].hwndTarget = hwnd;
|
||||
raw_devices[2].usUsagePage = 0x01;
|
||||
raw_devices[2].usUsage = 0x02;
|
||||
raw_devices[2].dwFlags = 0;
|
||||
raw_devices[2].hwndTarget = hwnd;
|
||||
raw_devices_count = ARRAY_SIZE(raw_devices);
|
||||
hr = RegisterRawInputDevices(raw_devices, raw_devices_count, sizeof(RAWINPUTDEVICE));
|
||||
ok(hr == TRUE, "RegisterRawInputDevices failed\n");
|
||||
|
||||
hr = IDirectInputDevice8_Acquire(di_keyboard);
|
||||
ok(SUCCEEDED(hr), "IDirectInputDevice8_Acquire failed: %08x\n", hr);
|
||||
hr = IDirectInputDevice8_Acquire(di_mouse);
|
||||
ok(SUCCEEDED(hr), "IDirectInputDevice8_Acquire failed: %08x\n", hr);
|
||||
raw_devices_count = ARRAY_SIZE(raw_devices);
|
||||
memset(raw_devices, 0, sizeof(raw_devices));
|
||||
hr = GetRegisteredRawInputDevices(raw_devices, &raw_devices_count, sizeof(RAWINPUTDEVICE));
|
||||
todo_wine
|
||||
ok(hr == 3, "GetRegisteredRawInputDevices returned %d, raw_devices_count: %d\n", hr, raw_devices_count);
|
||||
todo_wine
|
||||
ok(raw_devices[0].usUsagePage == 1, "Unexpected raw device usage page: %x\n", raw_devices[0].usUsagePage);
|
||||
todo_wine
|
||||
ok(raw_devices[0].usUsage == 2, "Unexpected raw device usage: %x\n", raw_devices[0].usUsage);
|
||||
todo_wine
|
||||
ok(raw_devices[0].dwFlags == RIDEV_INPUTSINK, "Unexpected raw device flags: %x\n", raw_devices[0].dwFlags);
|
||||
todo_wine
|
||||
ok(raw_devices[0].hwndTarget == di_hwnd, "Unexpected raw device target: %p\n", raw_devices[0].hwndTarget);
|
||||
todo_wine
|
||||
ok(raw_devices[1].usUsagePage == 1, "Unexpected raw device usage page: %x\n", raw_devices[1].usUsagePage);
|
||||
todo_wine
|
||||
ok(raw_devices[1].usUsage == 5, "Unexpected raw device usage: %x\n", raw_devices[1].usUsage);
|
||||
ok(raw_devices[1].dwFlags == 0, "Unexpected raw device flags: %x\n", raw_devices[1].dwFlags);
|
||||
todo_wine
|
||||
ok(raw_devices[1].hwndTarget == hwnd, "Unexpected raw device target: %p\n", raw_devices[1].hwndTarget);
|
||||
todo_wine
|
||||
ok(raw_devices[2].usUsagePage == 1, "Unexpected raw device usage page: %x\n", raw_devices[1].usUsagePage);
|
||||
todo_wine
|
||||
ok(raw_devices[2].usUsage == 6, "Unexpected raw device usage: %x\n", raw_devices[1].usUsage);
|
||||
todo_wine
|
||||
ok(raw_devices[2].dwFlags == RIDEV_INPUTSINK, "Unexpected raw device flags: %x\n", raw_devices[1].dwFlags);
|
||||
todo_wine
|
||||
ok(raw_devices[2].hwndTarget == di_hwnd, "Unexpected raw device target: %p\n", raw_devices[1].hwndTarget);
|
||||
hr = IDirectInputDevice8_Unacquire(di_keyboard);
|
||||
ok(SUCCEEDED(hr), "IDirectInputDevice8_Acquire failed: %08x\n", hr);
|
||||
hr = IDirectInputDevice8_Unacquire(di_mouse);
|
||||
ok(SUCCEEDED(hr), "IDirectInputDevice8_Acquire failed: %08x\n", hr);
|
||||
raw_devices_count = ARRAY_SIZE(raw_devices);
|
||||
GetRegisteredRawInputDevices(NULL, &raw_devices_count, sizeof(RAWINPUTDEVICE));
|
||||
todo_wine
|
||||
ok(raw_devices_count == 1, "Unexpected raw devices registered: %d\n", raw_devices_count);
|
||||
|
||||
raw_devices_count = ARRAY_SIZE(raw_devices);
|
||||
hr = GetRegisteredRawInputDevices(raw_devices, &raw_devices_count, sizeof(RAWINPUTDEVICE));
|
||||
todo_wine
|
||||
ok(hr == 1, "GetRegisteredRawInputDevices returned %d, raw_devices_count: %d\n", hr, raw_devices_count);
|
||||
todo_wine
|
||||
ok(raw_devices[0].usUsagePage == 1, "Unexpected raw device usage page: %x\n", raw_devices[0].usUsagePage);
|
||||
todo_wine
|
||||
ok(raw_devices[0].usUsage == 5, "Unexpected raw device usage: %x\n", raw_devices[0].usUsage);
|
||||
ok(raw_devices[0].dwFlags == 0, "Unexpected raw device flags: %x\n", raw_devices[0].dwFlags);
|
||||
todo_wine
|
||||
ok(raw_devices[0].hwndTarget == hwnd, "Unexpected raw device target: %p\n", raw_devices[0].hwndTarget);
|
||||
|
||||
IDirectInputDevice8_Release(di_mouse);
|
||||
IDirectInputDevice8_Release(di_keyboard);
|
||||
IDirectInput8_Release(di);
|
||||
|
||||
DestroyWindow(hwnd);
|
||||
}
|
||||
|
||||
START_TEST(device)
|
||||
{
|
||||
CoInitialize(NULL);
|
||||
|
||||
test_action_mapping();
|
||||
test_save_settings();
|
||||
test_mouse_keyboard();
|
||||
|
||||
CoUninitialize();
|
||||
}
|
727
modules/rostests/winetests/dinput8/dinput.c
Normal file
727
modules/rostests/winetests/dinput8/dinput.c
Normal file
|
@ -0,0 +1,727 @@
|
|||
/*
|
||||
* Copyright (c) 2011 Andrew Nguyen
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#define DIRECTINPUT_VERSION 0x0800
|
||||
|
||||
#define COBJMACROS
|
||||
#include <initguid.h>
|
||||
#include <windows.h>
|
||||
#include <dinput.h>
|
||||
#include <dinputd.h>
|
||||
|
||||
#include "wine/test.h"
|
||||
|
||||
HINSTANCE hInstance;
|
||||
|
||||
static BOOL CALLBACK dummy_callback(const DIDEVICEINSTANCEA *instance, void *context)
|
||||
{
|
||||
ok(0, "Callback was invoked with parameters (%p, %p)\n", instance, context);
|
||||
return DIENUM_STOP;
|
||||
}
|
||||
|
||||
static void test_preinitialization(void)
|
||||
{
|
||||
static const struct
|
||||
{
|
||||
REFGUID rguid;
|
||||
BOOL pdev;
|
||||
HRESULT expected_hr;
|
||||
} create_device_tests[] =
|
||||
{
|
||||
{NULL, FALSE, E_POINTER},
|
||||
{NULL, TRUE, E_POINTER},
|
||||
{&GUID_Unknown, FALSE, E_POINTER},
|
||||
{&GUID_Unknown, TRUE, DIERR_NOTINITIALIZED},
|
||||
{&GUID_SysMouse, FALSE, E_POINTER},
|
||||
{&GUID_SysMouse, TRUE, DIERR_NOTINITIALIZED},
|
||||
};
|
||||
|
||||
static const struct
|
||||
{
|
||||
DWORD dwDevType;
|
||||
LPDIENUMDEVICESCALLBACKA lpCallback;
|
||||
DWORD dwFlags;
|
||||
HRESULT expected_hr;
|
||||
int todo;
|
||||
} enum_devices_tests[] =
|
||||
{
|
||||
{0, NULL, 0, DIERR_INVALIDPARAM},
|
||||
{0, NULL, ~0u, DIERR_INVALIDPARAM},
|
||||
{0, dummy_callback, 0, DIERR_NOTINITIALIZED},
|
||||
{0, dummy_callback, ~0u, DIERR_INVALIDPARAM},
|
||||
{0xdeadbeef, NULL, 0, DIERR_INVALIDPARAM},
|
||||
{0xdeadbeef, NULL, ~0u, DIERR_INVALIDPARAM},
|
||||
{0xdeadbeef, dummy_callback, 0, DIERR_INVALIDPARAM},
|
||||
{0xdeadbeef, dummy_callback, ~0u, DIERR_INVALIDPARAM},
|
||||
};
|
||||
|
||||
IDirectInput8A *pDI;
|
||||
HRESULT hr;
|
||||
int i;
|
||||
IDirectInputDevice8A *pDID;
|
||||
|
||||
hr = CoCreateInstance(&CLSID_DirectInput8, NULL, CLSCTX_INPROC_SERVER, &IID_IDirectInput8A, (void **)&pDI);
|
||||
if (FAILED(hr))
|
||||
{
|
||||
skip("Failed to instantiate a IDirectInputA instance: 0x%08x\n", hr);
|
||||
return;
|
||||
}
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(create_device_tests); i++)
|
||||
{
|
||||
if (create_device_tests[i].pdev) pDID = (void *)0xdeadbeef;
|
||||
hr = IDirectInput8_CreateDevice(pDI, create_device_tests[i].rguid,
|
||||
create_device_tests[i].pdev ? &pDID : NULL,
|
||||
NULL);
|
||||
ok(hr == create_device_tests[i].expected_hr, "[%d] IDirectInput8_CreateDevice returned 0x%08x\n", i, hr);
|
||||
if (create_device_tests[i].pdev)
|
||||
ok(pDID == NULL, "[%d] Output interface pointer is %p\n", i, pDID);
|
||||
}
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(enum_devices_tests); i++)
|
||||
{
|
||||
hr = IDirectInput8_EnumDevices(pDI, enum_devices_tests[i].dwDevType,
|
||||
enum_devices_tests[i].lpCallback,
|
||||
NULL,
|
||||
enum_devices_tests[i].dwFlags);
|
||||
todo_wine_if(enum_devices_tests[i].todo)
|
||||
ok(hr == enum_devices_tests[i].expected_hr, "[%d] IDirectInput8_EnumDevice returned 0x%08x\n", i, hr);
|
||||
}
|
||||
|
||||
hr = IDirectInput8_GetDeviceStatus(pDI, NULL);
|
||||
ok(hr == E_POINTER, "IDirectInput8_GetDeviceStatus returned 0x%08x\n", hr);
|
||||
|
||||
hr = IDirectInput8_GetDeviceStatus(pDI, &GUID_Unknown);
|
||||
ok(hr == DIERR_NOTINITIALIZED, "IDirectInput8_GetDeviceStatus returned 0x%08x\n", hr);
|
||||
|
||||
hr = IDirectInput8_GetDeviceStatus(pDI, &GUID_SysMouse);
|
||||
ok(hr == DIERR_NOTINITIALIZED, "IDirectInput8_GetDeviceStatus returned 0x%08x\n", hr);
|
||||
|
||||
hr = IDirectInput8_RunControlPanel(pDI, NULL, 0);
|
||||
ok(hr == DIERR_NOTINITIALIZED, "IDirectInput8_RunControlPanel returned 0x%08x\n", hr);
|
||||
|
||||
hr = IDirectInput8_RunControlPanel(pDI, NULL, ~0u);
|
||||
ok(hr == DIERR_INVALIDPARAM, "IDirectInput8_RunControlPanel returned 0x%08x\n", hr);
|
||||
|
||||
hr = IDirectInput8_RunControlPanel(pDI, (HWND)0xdeadbeef, 0);
|
||||
ok(hr == E_HANDLE, "IDirectInput8_RunControlPanel returned 0x%08x\n", hr);
|
||||
|
||||
hr = IDirectInput8_RunControlPanel(pDI, (HWND)0xdeadbeef, ~0u);
|
||||
ok(hr == E_HANDLE, "IDirectInput8_RunControlPanel returned 0x%08x\n", hr);
|
||||
|
||||
IDirectInput8_Release(pDI);
|
||||
}
|
||||
|
||||
static void test_DirectInput8Create(void)
|
||||
{
|
||||
static const struct
|
||||
{
|
||||
BOOL hinst;
|
||||
DWORD dwVersion;
|
||||
REFIID riid;
|
||||
BOOL ppdi;
|
||||
HRESULT expected_hr;
|
||||
} invalid_param_list[] =
|
||||
{
|
||||
{FALSE, 0, &IID_IDirectInputA, FALSE, E_POINTER},
|
||||
{FALSE, 0, &IID_IDirectInputA, TRUE, DIERR_NOINTERFACE},
|
||||
{FALSE, 0, &IID_IDirectInput8A, FALSE, E_POINTER},
|
||||
{FALSE, 0, &IID_IDirectInput8A, TRUE, DIERR_INVALIDPARAM},
|
||||
{FALSE, DIRECTINPUT_VERSION, &IID_IDirectInputA, FALSE, E_POINTER},
|
||||
{FALSE, DIRECTINPUT_VERSION, &IID_IDirectInputA, TRUE, DIERR_NOINTERFACE},
|
||||
{FALSE, DIRECTINPUT_VERSION, &IID_IDirectInput8A, FALSE, E_POINTER},
|
||||
{FALSE, DIRECTINPUT_VERSION, &IID_IDirectInput8A, TRUE, DIERR_INVALIDPARAM},
|
||||
{FALSE, DIRECTINPUT_VERSION - 1, &IID_IDirectInputA, FALSE, E_POINTER},
|
||||
{FALSE, DIRECTINPUT_VERSION - 1, &IID_IDirectInputA, TRUE, DIERR_NOINTERFACE},
|
||||
{FALSE, DIRECTINPUT_VERSION - 1, &IID_IDirectInput8A, FALSE, E_POINTER},
|
||||
{FALSE, DIRECTINPUT_VERSION - 1, &IID_IDirectInput8A, TRUE, DIERR_INVALIDPARAM},
|
||||
{FALSE, DIRECTINPUT_VERSION + 1, &IID_IDirectInputA, FALSE, E_POINTER},
|
||||
{FALSE, DIRECTINPUT_VERSION + 1, &IID_IDirectInputA, TRUE, DIERR_NOINTERFACE},
|
||||
{FALSE, DIRECTINPUT_VERSION + 1, &IID_IDirectInput8A, FALSE, E_POINTER},
|
||||
{FALSE, DIRECTINPUT_VERSION + 1, &IID_IDirectInput8A, TRUE, DIERR_INVALIDPARAM},
|
||||
{TRUE, 0, &IID_IDirectInputA, FALSE, E_POINTER},
|
||||
{TRUE, 0, &IID_IDirectInputA, TRUE, DIERR_NOINTERFACE},
|
||||
{TRUE, 0, &IID_IDirectInput8A, FALSE, E_POINTER},
|
||||
{TRUE, 0, &IID_IDirectInput8A, TRUE, DIERR_NOTINITIALIZED},
|
||||
{TRUE, DIRECTINPUT_VERSION, &IID_IDirectInputA, FALSE, E_POINTER},
|
||||
{TRUE, DIRECTINPUT_VERSION, &IID_IDirectInputA, TRUE, DIERR_NOINTERFACE},
|
||||
{TRUE, DIRECTINPUT_VERSION, &IID_IDirectInput8A, FALSE, E_POINTER},
|
||||
{TRUE, DIRECTINPUT_VERSION - 1, &IID_IDirectInputA, FALSE, E_POINTER},
|
||||
{TRUE, DIRECTINPUT_VERSION - 1, &IID_IDirectInputA, TRUE, DIERR_NOINTERFACE},
|
||||
{TRUE, DIRECTINPUT_VERSION - 1, &IID_IDirectInput8A, FALSE, E_POINTER},
|
||||
{TRUE, DIRECTINPUT_VERSION - 1, &IID_IDirectInput8A, TRUE, DIERR_BETADIRECTINPUTVERSION},
|
||||
{TRUE, DIRECTINPUT_VERSION + 1, &IID_IDirectInputA, FALSE, E_POINTER},
|
||||
{TRUE, DIRECTINPUT_VERSION + 1, &IID_IDirectInputA, TRUE, DIERR_NOINTERFACE},
|
||||
{TRUE, DIRECTINPUT_VERSION + 1, &IID_IDirectInput8A, FALSE, E_POINTER},
|
||||
{TRUE, DIRECTINPUT_VERSION + 1, &IID_IDirectInput8A, TRUE, DIERR_OLDDIRECTINPUTVERSION},
|
||||
};
|
||||
|
||||
static REFIID no_interface_list[] = {&IID_IDirectInputA, &IID_IDirectInputW,
|
||||
&IID_IDirectInput2A, &IID_IDirectInput2W,
|
||||
&IID_IDirectInput7A, &IID_IDirectInput7W,
|
||||
&IID_IDirectInputDeviceA, &IID_IDirectInputDeviceW,
|
||||
&IID_IDirectInputDevice2A, &IID_IDirectInputDevice2W,
|
||||
&IID_IDirectInputDevice7A, &IID_IDirectInputDevice7W,
|
||||
&IID_IDirectInputDevice8A, &IID_IDirectInputDevice8W,
|
||||
&IID_IDirectInputEffect};
|
||||
|
||||
static REFIID iid_list[] = {&IID_IUnknown, &IID_IDirectInput8A, &IID_IDirectInput8W};
|
||||
|
||||
int i;
|
||||
IUnknown *pUnk;
|
||||
HRESULT hr;
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(invalid_param_list); i++)
|
||||
{
|
||||
if (invalid_param_list[i].ppdi) pUnk = (void *)0xdeadbeef;
|
||||
hr = DirectInput8Create(invalid_param_list[i].hinst ? hInstance : NULL,
|
||||
invalid_param_list[i].dwVersion,
|
||||
invalid_param_list[i].riid,
|
||||
invalid_param_list[i].ppdi ? (void **)&pUnk : NULL,
|
||||
NULL);
|
||||
ok(hr == invalid_param_list[i].expected_hr, "[%d] DirectInput8Create returned 0x%08x\n", i, hr);
|
||||
if (invalid_param_list[i].ppdi)
|
||||
ok(pUnk == NULL, "[%d] Output interface pointer is %p\n", i, pUnk);
|
||||
}
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(no_interface_list); i++)
|
||||
{
|
||||
pUnk = (void *)0xdeadbeef;
|
||||
hr = DirectInput8Create(hInstance, DIRECTINPUT_VERSION, no_interface_list[i], (void **)&pUnk, NULL);
|
||||
ok(hr == DIERR_NOINTERFACE, "[%d] DirectInput8Create returned 0x%08x\n", i, hr);
|
||||
ok(pUnk == NULL, "[%d] Output interface pointer is %p\n", i, pUnk);
|
||||
}
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(iid_list); i++)
|
||||
{
|
||||
pUnk = NULL;
|
||||
hr = DirectInput8Create(hInstance, DIRECTINPUT_VERSION, iid_list[i], (void **)&pUnk, NULL);
|
||||
ok(hr == DI_OK, "[%d] DirectInput8Create returned 0x%08x\n", i, hr);
|
||||
ok(pUnk != NULL, "[%d] Output interface pointer is NULL\n", i);
|
||||
if (pUnk)
|
||||
IUnknown_Release(pUnk);
|
||||
}
|
||||
}
|
||||
|
||||
static void test_QueryInterface(void)
|
||||
{
|
||||
static REFIID iid_list[] = {&IID_IUnknown, &IID_IDirectInput8A, &IID_IDirectInput8W, &IID_IDirectInputJoyConfig8};
|
||||
|
||||
static REFIID no_interface_list[] =
|
||||
{
|
||||
&IID_IDirectInputA,
|
||||
&IID_IDirectInputW,
|
||||
&IID_IDirectInput2A,
|
||||
&IID_IDirectInput2W,
|
||||
&IID_IDirectInput7A,
|
||||
&IID_IDirectInput7W,
|
||||
&IID_IDirectInputDeviceA,
|
||||
&IID_IDirectInputDeviceW,
|
||||
&IID_IDirectInputDevice2A,
|
||||
&IID_IDirectInputDevice2W,
|
||||
&IID_IDirectInputDevice7A,
|
||||
&IID_IDirectInputDevice7W,
|
||||
&IID_IDirectInputDevice8A,
|
||||
&IID_IDirectInputDevice8W,
|
||||
&IID_IDirectInputEffect,
|
||||
};
|
||||
|
||||
IDirectInput8A *pDI;
|
||||
HRESULT hr;
|
||||
IUnknown *pUnk;
|
||||
int i;
|
||||
|
||||
hr = DirectInput8Create(hInstance, DIRECTINPUT_VERSION, &IID_IDirectInput8A, (void **)&pDI, NULL);
|
||||
if (FAILED(hr))
|
||||
{
|
||||
win_skip("Failed to instantiate a IDirectInputA instance: 0x%08x\n", hr);
|
||||
return;
|
||||
}
|
||||
|
||||
hr = IDirectInput8_QueryInterface(pDI, NULL, NULL);
|
||||
ok(hr == E_POINTER, "IDirectInput8_QueryInterface returned 0x%08x\n", hr);
|
||||
|
||||
pUnk = (void *)0xdeadbeef;
|
||||
hr = IDirectInput8_QueryInterface(pDI, NULL, (void **)&pUnk);
|
||||
ok(hr == E_POINTER, "IDirectInput8_QueryInterface returned 0x%08x\n", hr);
|
||||
ok(pUnk == (void *)0xdeadbeef, "Output interface pointer is %p\n", pUnk);
|
||||
|
||||
hr = IDirectInput8_QueryInterface(pDI, &IID_IUnknown, NULL);
|
||||
ok(hr == E_POINTER, "IDirectInput8_QueryInterface returned 0x%08x\n", hr);
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(iid_list); i++)
|
||||
{
|
||||
pUnk = NULL;
|
||||
hr = IDirectInput8_QueryInterface(pDI, iid_list[i], (void **)&pUnk);
|
||||
ok(hr == S_OK, "[%d] IDirectInput8_QueryInterface returned 0x%08x\n", i, hr);
|
||||
ok(pUnk != NULL, "[%d] Output interface pointer is NULL\n", i);
|
||||
if (pUnk)
|
||||
{
|
||||
int j;
|
||||
for (j = 0; j < ARRAY_SIZE(iid_list); j++)
|
||||
{
|
||||
IUnknown *pUnk1 = NULL;
|
||||
hr = IDirectInput8_QueryInterface(pUnk, iid_list[j], (void **)&pUnk1);
|
||||
ok(hr == S_OK, "[%d] IDirectInput8_QueryInterface(pUnk) returned 0x%08x\n", j, hr);
|
||||
ok(pUnk1 != NULL, "[%d] Output interface pointer is NULL\n", i);
|
||||
if (pUnk1) IUnknown_Release(pUnk1);
|
||||
}
|
||||
IUnknown_Release(pUnk);
|
||||
}
|
||||
}
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(no_interface_list); i++)
|
||||
{
|
||||
pUnk = (void *)0xdeadbeef;
|
||||
hr = IDirectInput8_QueryInterface(pDI, no_interface_list[i], (void **)&pUnk);
|
||||
|
||||
ok(hr == E_NOINTERFACE, "[%d] IDirectInput8_QueryInterface returned 0x%08x\n", i, hr);
|
||||
ok(pUnk == NULL, "[%d] Output interface pointer is %p\n", i, pUnk);
|
||||
}
|
||||
|
||||
IDirectInput8_Release(pDI);
|
||||
}
|
||||
|
||||
static void test_CreateDevice(void)
|
||||
{
|
||||
IDirectInput8A *pDI;
|
||||
HRESULT hr;
|
||||
IDirectInputDevice8A *pDID;
|
||||
|
||||
hr = DirectInput8Create(hInstance, DIRECTINPUT_VERSION, &IID_IDirectInput8A, (void **)&pDI, NULL);
|
||||
if (FAILED(hr))
|
||||
{
|
||||
win_skip("Failed to instantiate a IDirectInputA instance: 0x%08x\n", hr);
|
||||
return;
|
||||
}
|
||||
|
||||
hr = IDirectInput8_CreateDevice(pDI, NULL, NULL, NULL);
|
||||
ok(hr == E_POINTER, "IDirectInput8_CreateDevice returned 0x%08x\n", hr);
|
||||
|
||||
pDID = (void *)0xdeadbeef;
|
||||
hr = IDirectInput8_CreateDevice(pDI, NULL, &pDID, NULL);
|
||||
ok(hr == E_POINTER, "IDirectInput8_CreateDevice returned 0x%08x\n", hr);
|
||||
ok(pDID == NULL, "Output interface pointer is %p\n", pDID);
|
||||
|
||||
hr = IDirectInput8_CreateDevice(pDI, &GUID_Unknown, NULL, NULL);
|
||||
ok(hr == E_POINTER, "IDirectInput8_CreateDevice returned 0x%08x\n", hr);
|
||||
|
||||
pDID = (void *)0xdeadbeef;
|
||||
hr = IDirectInput8_CreateDevice(pDI, &GUID_Unknown, &pDID, NULL);
|
||||
ok(hr == DIERR_DEVICENOTREG, "IDirectInput8_CreateDevice returned 0x%08x\n", hr);
|
||||
ok(pDID == NULL, "Output interface pointer is %p\n", pDID);
|
||||
|
||||
hr = IDirectInput8_CreateDevice(pDI, &GUID_SysMouse, NULL, NULL);
|
||||
ok(hr == E_POINTER, "IDirectInput8_CreateDevice returned 0x%08x\n", hr);
|
||||
|
||||
hr = IDirectInput8_CreateDevice(pDI, &GUID_SysMouse, &pDID, NULL);
|
||||
ok(hr == DI_OK, "IDirectInput8_CreateDevice returned 0x%08x\n", hr);
|
||||
|
||||
IDirectInputDevice_Release(pDID);
|
||||
IDirectInput8_Release(pDI);
|
||||
}
|
||||
|
||||
struct enum_devices_test
|
||||
{
|
||||
unsigned int device_count;
|
||||
BOOL return_value;
|
||||
};
|
||||
|
||||
static BOOL CALLBACK enum_devices_callback(const DIDEVICEINSTANCEA *instance, void *context)
|
||||
{
|
||||
struct enum_devices_test *enum_test = context;
|
||||
|
||||
trace("---- Device Information ----\n"
|
||||
"Product Name : %s\n"
|
||||
"Instance Name : %s\n"
|
||||
"devType : 0x%08x\n"
|
||||
"GUID Product : %s\n"
|
||||
"GUID Instance : %s\n"
|
||||
"HID Page : 0x%04x\n"
|
||||
"HID Usage : 0x%04x\n",
|
||||
instance->tszProductName,
|
||||
instance->tszInstanceName,
|
||||
instance->dwDevType,
|
||||
wine_dbgstr_guid(&instance->guidProduct),
|
||||
wine_dbgstr_guid(&instance->guidInstance),
|
||||
instance->wUsagePage,
|
||||
instance->wUsage);
|
||||
|
||||
if ((instance->dwDevType & 0xff) == DI8DEVTYPE_KEYBOARD ||
|
||||
(instance->dwDevType & 0xff) == DI8DEVTYPE_MOUSE) {
|
||||
const char *device = ((instance->dwDevType & 0xff) ==
|
||||
DI8DEVTYPE_KEYBOARD) ? "Keyboard" : "Mouse";
|
||||
ok(IsEqualGUID(&instance->guidInstance, &instance->guidProduct),
|
||||
"%s guidInstance (%s) does not match guidProduct (%s)\n",
|
||||
device, wine_dbgstr_guid(&instance->guidInstance),
|
||||
wine_dbgstr_guid(&instance->guidProduct));
|
||||
}
|
||||
|
||||
enum_test->device_count++;
|
||||
return enum_test->return_value;
|
||||
}
|
||||
|
||||
static void test_EnumDevices(void)
|
||||
{
|
||||
IDirectInput8A *pDI;
|
||||
HRESULT hr;
|
||||
struct enum_devices_test enum_test, enum_test_return;
|
||||
|
||||
hr = DirectInput8Create(hInstance, DIRECTINPUT_VERSION, &IID_IDirectInput8A, (void **)&pDI, NULL);
|
||||
if (FAILED(hr))
|
||||
{
|
||||
win_skip("Failed to instantiate a IDirectInputA instance: 0x%08x\n", hr);
|
||||
return;
|
||||
}
|
||||
|
||||
hr = IDirectInput8_EnumDevices(pDI, 0, NULL, NULL, 0);
|
||||
ok(hr == DIERR_INVALIDPARAM, "IDirectInput8_EnumDevices returned 0x%08x\n", hr);
|
||||
|
||||
hr = IDirectInput8_EnumDevices(pDI, 0, NULL, NULL, ~0u);
|
||||
ok(hr == DIERR_INVALIDPARAM, "IDirectInput8_EnumDevices returned 0x%08x\n", hr);
|
||||
|
||||
/* Test crashes on Wine. */
|
||||
if (0)
|
||||
{
|
||||
hr = IDirectInput8_EnumDevices(pDI, 0, enum_devices_callback, NULL, ~0u);
|
||||
ok(hr == DIERR_INVALIDPARAM, "IDirectInput8_EnumDevices returned 0x%08x\n", hr);
|
||||
}
|
||||
|
||||
hr = IDirectInput8_EnumDevices(pDI, 0xdeadbeef, NULL, NULL, 0);
|
||||
ok(hr == DIERR_INVALIDPARAM, "IDirectInput8_EnumDevices returned 0x%08x\n", hr);
|
||||
|
||||
hr = IDirectInput8_EnumDevices(pDI, 0xdeadbeef, NULL, NULL, ~0u);
|
||||
ok(hr == DIERR_INVALIDPARAM, "IDirectInput8_EnumDevices returned 0x%08x\n", hr);
|
||||
|
||||
hr = IDirectInput8_EnumDevices(pDI, 0xdeadbeef, enum_devices_callback, NULL, 0);
|
||||
ok(hr == DIERR_INVALIDPARAM, "IDirectInput8_EnumDevices returned 0x%08x\n", hr);
|
||||
|
||||
hr = IDirectInput8_EnumDevices(pDI, 0xdeadbeef, enum_devices_callback, NULL, ~0u);
|
||||
ok(hr == DIERR_INVALIDPARAM, "IDirectInput8_EnumDevices returned 0x%08x\n", hr);
|
||||
|
||||
enum_test.device_count = 0;
|
||||
enum_test.return_value = DIENUM_CONTINUE;
|
||||
hr = IDirectInput8_EnumDevices(pDI, 0, enum_devices_callback, &enum_test, 0);
|
||||
ok(hr == DI_OK, "IDirectInput8_EnumDevices returned 0x%08x\n", hr);
|
||||
ok(enum_test.device_count != 0, "Device count is %u\n", enum_test.device_count);
|
||||
|
||||
/* Enumeration only stops with an explicit DIENUM_STOP. */
|
||||
enum_test_return.device_count = 0;
|
||||
enum_test_return.return_value = 42;
|
||||
hr = IDirectInput8_EnumDevices(pDI, 0, enum_devices_callback, &enum_test_return, 0);
|
||||
ok(hr == DI_OK, "IDirectInput8_EnumDevices returned 0x%08x\n", hr);
|
||||
ok(enum_test_return.device_count == enum_test.device_count,
|
||||
"Device count is %u vs. %u\n", enum_test_return.device_count, enum_test.device_count);
|
||||
|
||||
enum_test.device_count = 0;
|
||||
enum_test.return_value = DIENUM_STOP;
|
||||
hr = IDirectInput8_EnumDevices(pDI, 0, enum_devices_callback, &enum_test, 0);
|
||||
ok(hr == DI_OK, "IDirectInput8_EnumDevices returned 0x%08x\n", hr);
|
||||
ok(enum_test.device_count == 1, "Device count is %u\n", enum_test.device_count);
|
||||
|
||||
IDirectInput8_Release(pDI);
|
||||
}
|
||||
|
||||
struct enum_semantics_test
|
||||
{
|
||||
unsigned int device_count;
|
||||
DWORD first_remaining;
|
||||
BOOL mouse;
|
||||
BOOL keyboard;
|
||||
DIACTIONFORMATA *lpdiaf;
|
||||
const char* username;
|
||||
};
|
||||
|
||||
static DIACTIONA actionMapping[]=
|
||||
{
|
||||
/* axis */
|
||||
{ 0, 0x01008A01 /* DIAXIS_DRIVINGR_STEER */, 0, { "Steer.\0" } },
|
||||
/* button */
|
||||
{ 1, 0x01000C01 /* DIBUTTON_DRIVINGR_SHIFTUP */, 0, { "Upshift.\0" } },
|
||||
/* keyboard key */
|
||||
{ 2, DIKEYBOARD_SPACE, 0, { "Missile.\0" } },
|
||||
/* mouse button */
|
||||
{ 3, DIMOUSE_BUTTON0, 0, { "Select\0" } },
|
||||
/* mouse axis */
|
||||
{ 4, DIMOUSE_YAXIS, 0, { "Y Axis\0" } }
|
||||
};
|
||||
/* By placing the memory pointed to by lptszActionName right before memory with PAGE_NOACCESS
|
||||
* one can find out that the regular ansi string termination is not respected by EnumDevicesBySemantics.
|
||||
* Adding a double termination, making it a valid wide string termination, made the test succeed.
|
||||
* Therefore it looks like ansi version of EnumDevicesBySemantics forwards the string to
|
||||
* the wide variant without conversation. */
|
||||
|
||||
static BOOL CALLBACK enum_semantics_callback(const DIDEVICEINSTANCEA *lpddi, IDirectInputDevice8A *lpdid, DWORD dwFlags, DWORD dwRemaining, void *context)
|
||||
{
|
||||
struct enum_semantics_test *data = context;
|
||||
|
||||
if (context == NULL) return DIENUM_STOP;
|
||||
|
||||
if (!data->device_count) {
|
||||
data->first_remaining = dwRemaining;
|
||||
}
|
||||
ok (dwRemaining == data->first_remaining - data->device_count,
|
||||
"enum semantics remaining devices is wrong, expected %d, had %d\n",
|
||||
data->first_remaining - data->device_count, dwRemaining);
|
||||
data->device_count++;
|
||||
|
||||
if (IsEqualGUID(&lpddi->guidInstance, &GUID_SysKeyboard)) data->keyboard = TRUE;
|
||||
|
||||
if (IsEqualGUID(&lpddi->guidInstance, &GUID_SysMouse)) data->mouse = TRUE;
|
||||
|
||||
return DIENUM_CONTINUE;
|
||||
}
|
||||
|
||||
static BOOL CALLBACK set_action_map_callback(const DIDEVICEINSTANCEA *lpddi, IDirectInputDevice8A *lpdid, DWORD dwFlags, DWORD dwRemaining, void *context)
|
||||
{
|
||||
HRESULT hr;
|
||||
struct enum_semantics_test *data = context;
|
||||
|
||||
/* Building and setting an action map */
|
||||
/* It should not use any pre-stored mappings so we use DIDBAM_INITIALIZE */
|
||||
hr = IDirectInputDevice8_BuildActionMap(lpdid, data->lpdiaf, NULL, DIDBAM_INITIALIZE);
|
||||
ok (SUCCEEDED(hr), "BuildActionMap failed hr=%08x\n", hr);
|
||||
|
||||
hr = IDirectInputDevice8_SetActionMap(lpdid, data->lpdiaf, data->username, 0);
|
||||
ok (SUCCEEDED(hr), "SetActionMap failed hr=%08x\n", hr);
|
||||
|
||||
return DIENUM_CONTINUE;
|
||||
}
|
||||
|
||||
static void test_EnumDevicesBySemantics(void)
|
||||
{
|
||||
IDirectInput8A *pDI;
|
||||
HRESULT hr;
|
||||
DIACTIONFORMATA diaf;
|
||||
const GUID ACTION_MAPPING_GUID = { 0x1, 0x2, 0x3, { 0x4, 0x5, 0x6, 0x7, 0x8, 0x9, 0xa, 0xb } };
|
||||
struct enum_semantics_test data = { 0, 0, FALSE, FALSE, &diaf, NULL };
|
||||
int device_total = 0;
|
||||
|
||||
hr = DirectInput8Create(hInstance, DIRECTINPUT_VERSION, &IID_IDirectInput8A, (void **)&pDI, NULL);
|
||||
if (FAILED(hr))
|
||||
{
|
||||
win_skip("Failed to instantiate a IDirectInputA instance: 0x%08x\n", hr);
|
||||
return;
|
||||
}
|
||||
|
||||
memset (&diaf, 0, sizeof(diaf));
|
||||
diaf.dwSize = sizeof(diaf);
|
||||
diaf.dwActionSize = sizeof(DIACTIONA);
|
||||
diaf.dwNumActions = ARRAY_SIZE(actionMapping);
|
||||
diaf.dwDataSize = 4 * diaf.dwNumActions;
|
||||
diaf.rgoAction = actionMapping;
|
||||
diaf.guidActionMap = ACTION_MAPPING_GUID;
|
||||
diaf.dwGenre = 0x01000000; /* DIVIRTUAL_DRIVING_RACE */
|
||||
diaf.dwBufferSize = 32;
|
||||
|
||||
/* Test enumerating all attached and installed devices */
|
||||
data.keyboard = FALSE;
|
||||
data.mouse = FALSE;
|
||||
data.device_count = 0;
|
||||
hr = IDirectInput8_EnumDevicesBySemantics(pDI, NULL, &diaf, enum_semantics_callback, &data, DIEDBSFL_ATTACHEDONLY);
|
||||
ok (data.device_count > 0, "EnumDevicesBySemantics did not call the callback hr=%08x\n", hr);
|
||||
ok (data.keyboard, "EnumDevicesBySemantics should enumerate the keyboard\n");
|
||||
ok (data.mouse, "EnumDevicesBySemantics should enumerate the mouse\n");
|
||||
|
||||
/* Enumerate Force feedback devices. We should get no mouse nor keyboard */
|
||||
data.keyboard = FALSE;
|
||||
data.mouse = FALSE;
|
||||
data.device_count = 0;
|
||||
hr = IDirectInput8_EnumDevicesBySemantics(pDI, NULL, &diaf, enum_semantics_callback, &data, DIEDBSFL_FORCEFEEDBACK);
|
||||
ok (SUCCEEDED(hr), "EnumDevicesBySemantics failed hr=%08x\n", hr);
|
||||
ok (!data.keyboard, "Keyboard should not be enumerated when asking for forcefeedback\n");
|
||||
ok (!data.mouse, "Mouse should not be enumerated when asking for forcefeedback\n");
|
||||
|
||||
/* Enumerate available devices. That is devices not owned by any user.
|
||||
Before setting the action map for all devices we still have them available. */
|
||||
data.device_count = 0;
|
||||
hr = IDirectInput8_EnumDevicesBySemantics(pDI, NULL, &diaf, enum_semantics_callback, &data, DIEDBSFL_AVAILABLEDEVICES);
|
||||
ok (SUCCEEDED(hr), "EnumDevicesBySemantics failed hr=%08x\n", hr);
|
||||
ok (data.device_count > 0, "There should be devices available before action mapping available=%d\n", data.device_count);
|
||||
|
||||
/* Keep the device total */
|
||||
device_total = data.device_count;
|
||||
|
||||
/* There should be no devices for any user. No device should be enumerated with DIEDBSFL_THISUSER.
|
||||
MSDN defines that all unowned devices are also enumerated but this doesn't seem to be happening. */
|
||||
data.device_count = 0;
|
||||
hr = IDirectInput8_EnumDevicesBySemantics(pDI, "Sh4d0w M4g3", &diaf, enum_semantics_callback, &data, DIEDBSFL_THISUSER);
|
||||
ok (SUCCEEDED(hr), "EnumDevicesBySemantics failed hr=%08x\n", hr);
|
||||
ok (data.device_count == 0, "No devices should be assigned for this user assigned=%d\n", data.device_count);
|
||||
|
||||
/* This enumeration builds and sets the action map for all devices with a NULL username */
|
||||
hr = IDirectInput8_EnumDevicesBySemantics(pDI, NULL, &diaf, set_action_map_callback, &data, DIEDBSFL_ATTACHEDONLY);
|
||||
ok (SUCCEEDED(hr), "EnumDevicesBySemantics failed: hr=%08x\n", hr);
|
||||
|
||||
/* After a successful action mapping we should have no devices available */
|
||||
data.device_count = 0;
|
||||
hr = IDirectInput8_EnumDevicesBySemantics(pDI, NULL, &diaf, enum_semantics_callback, &data, DIEDBSFL_AVAILABLEDEVICES);
|
||||
ok (SUCCEEDED(hr), "EnumDevicesBySemantics failed hr=%08x\n", hr);
|
||||
ok (data.device_count == 0, "No device should be available after action mapping available=%d\n", data.device_count);
|
||||
|
||||
/* Now we'll give all the devices to a specific user */
|
||||
data.username = "Sh4d0w M4g3";
|
||||
hr = IDirectInput8_EnumDevicesBySemantics(pDI, NULL, &diaf, set_action_map_callback, &data, DIEDBSFL_ATTACHEDONLY);
|
||||
ok (SUCCEEDED(hr), "EnumDevicesBySemantics failed: hr=%08x\n", hr);
|
||||
|
||||
/* Testing with the default user, DIEDBSFL_THISUSER has no effect */
|
||||
data.device_count = 0;
|
||||
hr = IDirectInput8_EnumDevicesBySemantics(pDI, NULL, &diaf, enum_semantics_callback, &data, DIEDBSFL_THISUSER);
|
||||
ok (SUCCEEDED(hr), "EnumDevicesBySemantics failed hr=%08x\n", hr);
|
||||
ok (data.device_count == device_total, "THISUSER has no effect with NULL username owned=%d, expected=%d\n", data.device_count, device_total);
|
||||
|
||||
/* Using an empty user string is the same as passing NULL, DIEDBSFL_THISUSER has no effect */
|
||||
data.device_count = 0;
|
||||
hr = IDirectInput8_EnumDevicesBySemantics(pDI, "", &diaf, enum_semantics_callback, &data, DIEDBSFL_THISUSER);
|
||||
ok (SUCCEEDED(hr), "EnumDevicesBySemantics failed hr=%08x\n", hr);
|
||||
ok (data.device_count == device_total, "THISUSER has no effect with \"\" as username owned=%d, expected=%d\n", data.device_count, device_total);
|
||||
|
||||
/* Testing with a user with no ownership of the devices */
|
||||
data.device_count = 0;
|
||||
hr = IDirectInput8_EnumDevicesBySemantics(pDI, "Ninja Brian", &diaf, enum_semantics_callback, &data, DIEDBSFL_THISUSER);
|
||||
ok (SUCCEEDED(hr), "EnumDevicesBySemantics failed hr=%08x\n", hr);
|
||||
ok (data.device_count == 0, "This user should own no devices owned=%d\n", data.device_count);
|
||||
|
||||
/* Sh4d0w M4g3 has ownership of all devices */
|
||||
data.device_count = 0;
|
||||
hr = IDirectInput8_EnumDevicesBySemantics(pDI, "Sh4d0w M4g3", &diaf, enum_semantics_callback, &data, DIEDBSFL_THISUSER);
|
||||
ok (SUCCEEDED(hr), "EnumDevicesBySemantics failed hr=%08x\n", hr);
|
||||
ok (data.device_count == device_total, "This user should own %d devices owned=%d\n", device_total, data.device_count);
|
||||
|
||||
/* The call fails with a zeroed GUID */
|
||||
memset(&diaf.guidActionMap, 0, sizeof(GUID));
|
||||
data.device_count = 0;
|
||||
hr = IDirectInput8_EnumDevicesBySemantics(pDI, NULL, &diaf, enum_semantics_callback, NULL, 0);
|
||||
todo_wine ok(FAILED(hr), "EnumDevicesBySemantics succeeded with invalid GUID hr=%08x\n", hr);
|
||||
|
||||
IDirectInput8_Release(pDI);
|
||||
}
|
||||
|
||||
static void test_GetDeviceStatus(void)
|
||||
{
|
||||
IDirectInput8A *pDI;
|
||||
HRESULT hr;
|
||||
|
||||
hr = DirectInput8Create(hInstance, DIRECTINPUT_VERSION, &IID_IDirectInput8A, (void **)&pDI, NULL);
|
||||
if (FAILED(hr))
|
||||
{
|
||||
win_skip("Failed to instantiate a IDirectInputA instance: 0x%08x\n", hr);
|
||||
return;
|
||||
}
|
||||
|
||||
hr = IDirectInput8_GetDeviceStatus(pDI, NULL);
|
||||
ok(hr == E_POINTER, "IDirectInput8_GetDeviceStatus returned 0x%08x\n", hr);
|
||||
|
||||
hr = IDirectInput8_GetDeviceStatus(pDI, &GUID_Unknown);
|
||||
todo_wine
|
||||
ok(hr == DIERR_DEVICENOTREG, "IDirectInput8_GetDeviceStatus returned 0x%08x\n", hr);
|
||||
|
||||
hr = IDirectInput8_GetDeviceStatus(pDI, &GUID_SysMouse);
|
||||
ok(hr == DI_OK, "IDirectInput8_GetDeviceStatus returned 0x%08x\n", hr);
|
||||
|
||||
IDirectInput8_Release(pDI);
|
||||
}
|
||||
|
||||
static void test_RunControlPanel(void)
|
||||
{
|
||||
IDirectInput8A *pDI;
|
||||
HRESULT hr;
|
||||
|
||||
hr = DirectInput8Create(hInstance, DIRECTINPUT_VERSION, &IID_IDirectInput8A, (void **)&pDI, NULL);
|
||||
if (FAILED(hr))
|
||||
{
|
||||
win_skip("Failed to instantiate a IDirectInputA instance: 0x%08x\n", hr);
|
||||
return;
|
||||
}
|
||||
|
||||
if (winetest_interactive)
|
||||
{
|
||||
hr = IDirectInput8_RunControlPanel(pDI, NULL, 0);
|
||||
ok(hr == S_OK, "IDirectInput8_RunControlPanel returned 0x%08x\n", hr);
|
||||
|
||||
hr = IDirectInput8_RunControlPanel(pDI, GetDesktopWindow(), 0);
|
||||
ok(hr == S_OK, "IDirectInput8_RunControlPanel returned 0x%08x\n", hr);
|
||||
}
|
||||
|
||||
hr = IDirectInput8_RunControlPanel(pDI, NULL, ~0u);
|
||||
ok(hr == DIERR_INVALIDPARAM, "IDirectInput8_RunControlPanel returned 0x%08x\n", hr);
|
||||
|
||||
hr = IDirectInput8_RunControlPanel(pDI, (HWND)0xdeadbeef, 0);
|
||||
ok(hr == E_HANDLE, "IDirectInput8_RunControlPanel returned 0x%08x\n", hr);
|
||||
|
||||
hr = IDirectInput8_RunControlPanel(pDI, (HWND)0xdeadbeef, ~0u);
|
||||
ok(hr == E_HANDLE, "IDirectInput8_RunControlPanel returned 0x%08x\n", hr);
|
||||
|
||||
IDirectInput8_Release(pDI);
|
||||
}
|
||||
|
||||
static void test_Initialize(void)
|
||||
{
|
||||
IDirectInput8A *pDI;
|
||||
HRESULT hr;
|
||||
|
||||
hr = DirectInput8Create(hInstance, DIRECTINPUT_VERSION, &IID_IDirectInput8A, (void **)&pDI, NULL);
|
||||
if (FAILED(hr))
|
||||
{
|
||||
win_skip("Failed to instantiate a IDirectInputA instance: 0x%08x\n", hr);
|
||||
return;
|
||||
}
|
||||
|
||||
hr = IDirectInput8_Initialize(pDI, NULL, 0);
|
||||
ok(hr == DIERR_INVALIDPARAM, "IDirectInput8_Initialize returned 0x%08x\n", hr);
|
||||
|
||||
hr = IDirectInput8_Initialize(pDI, NULL, DIRECTINPUT_VERSION);
|
||||
ok(hr == DIERR_INVALIDPARAM, "IDirectInput8_Initialize returned 0x%08x\n", hr);
|
||||
|
||||
hr = IDirectInput8_Initialize(pDI, hInstance, 0);
|
||||
ok(hr == DIERR_NOTINITIALIZED, "IDirectInput8_Initialize returned 0x%08x\n", hr);
|
||||
|
||||
/* Invalid DirectInput versions less than DIRECTINPUT_VERSION yield DIERR_BETADIRECTINPUTVERSION. */
|
||||
hr = IDirectInput8_Initialize(pDI, hInstance, DIRECTINPUT_VERSION - 1);
|
||||
ok(hr == DIERR_BETADIRECTINPUTVERSION, "IDirectInput8_Initialize returned 0x%08x\n", hr);
|
||||
|
||||
/* Invalid DirectInput versions greater than DIRECTINPUT_VERSION yield DIERR_BETADIRECTINPUTVERSION. */
|
||||
hr = IDirectInput8_Initialize(pDI, hInstance, DIRECTINPUT_VERSION + 1);
|
||||
ok(hr == DIERR_OLDDIRECTINPUTVERSION, "IDirectInput8_Initialize returned 0x%08x\n", hr);
|
||||
|
||||
hr = IDirectInput8_Initialize(pDI, hInstance, DIRECTINPUT_VERSION);
|
||||
ok(hr == DI_OK, "IDirectInput8_Initialize returned 0x%08x\n", hr);
|
||||
|
||||
/* Parameters are still validated after successful initialization. */
|
||||
hr = IDirectInput8_Initialize(pDI, hInstance, 0);
|
||||
ok(hr == DIERR_NOTINITIALIZED, "IDirectInput8_Initialize returned 0x%08x\n", hr);
|
||||
|
||||
IDirectInput8_Release(pDI);
|
||||
}
|
||||
|
||||
START_TEST(dinput)
|
||||
{
|
||||
hInstance = GetModuleHandleA(NULL);
|
||||
|
||||
CoInitialize(NULL);
|
||||
test_preinitialization();
|
||||
test_DirectInput8Create();
|
||||
test_QueryInterface();
|
||||
test_CreateDevice();
|
||||
test_EnumDevices();
|
||||
test_EnumDevicesBySemantics();
|
||||
test_GetDeviceStatus();
|
||||
test_RunControlPanel();
|
||||
test_Initialize();
|
||||
CoUninitialize();
|
||||
}
|
15
modules/rostests/winetests/dinput8/precomp.h
Normal file
15
modules/rostests/winetests/dinput8/precomp.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
|
||||
#ifndef _DINPUT_WINETEST_PRECOMP_H_
|
||||
#define _DINPUT_WINETEST_PRECOMP_H_
|
||||
|
||||
#define DIRECTINPUT_VERSION 0x0800
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#define COBJMACROS
|
||||
|
||||
#include <initguid.h>
|
||||
#include <windows.h>
|
||||
#include <wine/test.h>
|
||||
#include <dinput.h>
|
||||
|
||||
#endif /* !_DINPUT_WINETEST_PRECOMP_H_ */
|
14
modules/rostests/winetests/dinput8/testlist.c
Normal file
14
modules/rostests/winetests/dinput8/testlist.c
Normal file
|
@ -0,0 +1,14 @@
|
|||
/* Automatically generated file; DO NOT EDIT!! */
|
||||
|
||||
#define STANDALONE
|
||||
#include <wine/test.h>
|
||||
|
||||
extern void func_device(void);
|
||||
extern void func_dinput(void);
|
||||
|
||||
const struct test winetest_testlist[] =
|
||||
{
|
||||
{ "device", func_device },
|
||||
{ "dinput", func_dinput },
|
||||
{ 0, 0 }
|
||||
};
|
Loading…
Reference in a new issue