include: Add Windows.Gaming.Input.IXusbGameControllerInputSink interface definition.
Signed-off-by: Rémi Bernon <rbernon@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
78ef840425
commit
e762b5c450
|
@ -36,6 +36,7 @@ namespace Windows.Gaming.Input.Custom {
|
|||
interface IGameControllerProvider;
|
||||
interface IHidGameControllerInputSink;
|
||||
interface IHidGameControllerProvider;
|
||||
interface IXusbGameControllerInputSink;
|
||||
interface ICustomGameControllerFactory;
|
||||
interface IGameControllerFactoryManagerStatics;
|
||||
interface IGameControllerFactoryManagerStatics2;
|
||||
|
@ -126,6 +127,17 @@ namespace Windows.Gaming.Input.Custom {
|
|||
[in, size_is(report_len)] BYTE *report_buf);
|
||||
}
|
||||
|
||||
[
|
||||
contract(Windows.Foundation.UniversalApiContract, 3.0),
|
||||
uuid(b2ac1d95-6ecb-42b3-8aab-025401ca4712)
|
||||
]
|
||||
interface IXusbGameControllerInputSink : IInspectable
|
||||
requires Windows.Gaming.Input.Custom.IGameControllerInputSink
|
||||
{
|
||||
HRESULT OnInputReceived([in] UINT64 timestamp, [in] BYTE id, [in] UINT32 report_len,
|
||||
[in, size_is(report_len)] BYTE *report_buf);
|
||||
}
|
||||
|
||||
[
|
||||
contract(Windows.Foundation.UniversalApiContract, 3.0),
|
||||
uuid(69a0ae5e-758e-4cbe-ace6-62155fe9126f)
|
||||
|
|
Loading…
Reference in New Issue