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
90e9e310
Commit
90e9e310
authored
Jul 05, 2011
by
Andrew Nguyen
Committed by
Alexandre Julliard
Jul 06, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dinput: Implement IDirectInput::RunControlPanel.
parent
f6600263
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
84 additions
and
1 deletion
+84
-1
dinput_main.c
dlls/dinput/dinput_main.c
+14
-1
Makefile.in
dlls/dinput/tests/Makefile.in
+1
-0
dinput.c
dlls/dinput/tests/dinput.c
+69
-0
No files found.
dlls/dinput/dinput_main.c
View file @
90e9e310
...
...
@@ -510,9 +510,22 @@ static HRESULT WINAPI IDirectInputAImpl_RunControlPanel(LPDIRECTINPUT7A iface,
HWND
hwndOwner
,
DWORD
dwFlags
)
{
WCHAR
control_exeW
[]
=
{
'c'
,
'o'
,
'n'
,
't'
,
'r'
,
'o'
,
'l'
,
'.'
,
'e'
,
'x'
,
'e'
,
0
};
STARTUPINFOW
si
=
{
0
};
PROCESS_INFORMATION
pi
;
IDirectInputImpl
*
This
=
impl_from_IDirectInput7A
(
iface
);
FIXME
(
"(%p)->(%p,%08x): stub
\n
"
,
This
,
hwndOwner
,
dwFlags
);
TRACE
(
"(%p)->(%p, %08x)
\n
"
,
This
,
hwndOwner
,
dwFlags
);
if
(
hwndOwner
&&
!
IsWindow
(
hwndOwner
))
return
E_HANDLE
;
if
(
dwFlags
)
return
DIERR_INVALIDPARAM
;
if
(
!
CreateProcessW
(
NULL
,
control_exeW
,
NULL
,
NULL
,
FALSE
,
0
,
NULL
,
NULL
,
&
si
,
&
pi
))
return
HRESULT_FROM_WIN32
(
GetLastError
());
return
DI_OK
;
}
...
...
dlls/dinput/tests/Makefile.in
View file @
90e9e310
...
...
@@ -3,6 +3,7 @@ IMPORTS = dinput ole32 version user32
C_SRCS
=
\
device.c
\
dinput.c
\
joystick.c
\
keyboard.c
\
mouse.c
...
...
dlls/dinput/tests/dinput.c
0 → 100644
View file @
90e9e310
/*
* 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 0x0700
#define COBJMACROS
#include <windows.h>
#include <dinput.h>
#include "wine/test.h"
HINSTANCE
hInstance
;
static
void
test_RunControlPanel
(
void
)
{
IDirectInputA
*
pDI
;
HRESULT
hr
;
hr
=
DirectInputCreateA
(
hInstance
,
DIRECTINPUT_VERSION
,
&
pDI
,
NULL
);
if
(
FAILED
(
hr
))
{
win_skip
(
"Failed to instantiate a IDirectInputA instance: 0x%08x
\n
"
,
hr
);
return
;
}
if
(
winetest_interactive
)
{
hr
=
IDirectInput_RunControlPanel
(
pDI
,
NULL
,
0
);
ok
(
hr
==
S_OK
,
"IDirectInput_RunControlPanel returned 0x%08x
\n
"
,
hr
);
hr
=
IDirectInput_RunControlPanel
(
pDI
,
GetDesktopWindow
(),
0
);
ok
(
hr
==
S_OK
,
"IDirectInput_RunControlPanel returned 0x%08x
\n
"
,
hr
);
}
hr
=
IDirectInput_RunControlPanel
(
pDI
,
NULL
,
~
0u
);
ok
(
hr
==
DIERR_INVALIDPARAM
,
"IDirectInput_RunControlPanel returned 0x%08x
\n
"
,
hr
);
hr
=
IDirectInput_RunControlPanel
(
pDI
,
(
HWND
)
0xdeadbeef
,
0
);
ok
(
hr
==
E_HANDLE
,
"IDirectInput_RunControlPanel returned 0x%08x
\n
"
,
hr
);
hr
=
IDirectInput_RunControlPanel
(
pDI
,
(
HWND
)
0xdeadbeef
,
~
0u
);
ok
(
hr
==
E_HANDLE
,
"IDirectInput_RunControlPanel returned 0x%08x
\n
"
,
hr
);
IDirectInput_Release
(
pDI
);
}
START_TEST
(
dinput
)
{
hInstance
=
GetModuleHandleA
(
NULL
);
CoInitialize
(
NULL
);
test_RunControlPanel
();
CoUninitialize
();
}
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