include: Remove nested namespaces in windows.gaming.input.forcefeedback.idl.
Signed-off-by: Rémi Bernon <rbernon@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
8421f1ec8b
commit
b1998870df
|
@ -26,37 +26,18 @@ import "eventtoken.idl";
|
|||
import "windowscontracts.idl";
|
||||
import "windows.foundation.idl";
|
||||
|
||||
namespace Windows {
|
||||
namespace Gaming {
|
||||
namespace Input {
|
||||
namespace ForceFeedback {
|
||||
namespace Windows.Gaming.Input.ForceFeedback {
|
||||
typedef enum ForceFeedbackEffectAxes ForceFeedbackEffectAxes;
|
||||
typedef enum ForceFeedbackLoadEffectResult ForceFeedbackLoadEffectResult;
|
||||
interface IForceFeedbackEffect;
|
||||
runtimeclass ForceFeedbackMotor;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
namespace Windows {
|
||||
namespace Gaming {
|
||||
namespace Input {
|
||||
namespace ForceFeedback {
|
||||
declare {
|
||||
interface Windows.Foundation.AsyncOperationCompletedHandler<Windows.Gaming.Input.ForceFeedback.ForceFeedbackLoadEffectResult>;
|
||||
interface Windows.Foundation.IAsyncOperation<Windows.Gaming.Input.ForceFeedback.ForceFeedbackLoadEffectResult>;
|
||||
interface Windows.Foundation.Collections.IVectorView<Windows.Gaming.Input.ForceFeedback.ForceFeedbackMotor*>;
|
||||
interface Windows.Foundation.Collections.IVectorView<Windows.Gaming.Input.ForceFeedback.ForceFeedbackMotor *>;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
namespace Windows {
|
||||
namespace Gaming {
|
||||
namespace Input {
|
||||
namespace ForceFeedback {
|
||||
[
|
||||
contract(Windows.Foundation.UniversalApiContract, 3.0),
|
||||
flags
|
||||
|
@ -84,21 +65,21 @@ namespace Windows {
|
|||
]
|
||||
interface IForceFeedbackMotor : IInspectable
|
||||
{
|
||||
[propget] HRESULT AreEffectsPaused([out, retval] boolean* value);
|
||||
[propget] HRESULT MasterGain([out, retval] DOUBLE* value);
|
||||
[propget] HRESULT AreEffectsPaused([out, retval] boolean *value);
|
||||
[propget] HRESULT MasterGain([out, retval] DOUBLE *value);
|
||||
[propput] HRESULT MasterGain([in] DOUBLE value);
|
||||
[propget] HRESULT IsEnabled([out, retval] boolean* value);
|
||||
[propget] HRESULT SupportedAxes([out, retval] Windows.Gaming.Input.ForceFeedback.ForceFeedbackEffectAxes* value);
|
||||
HRESULT LoadEffectAsync([in] Windows.Gaming.Input.ForceFeedback.IForceFeedbackEffect* effect,
|
||||
[out, retval] Windows.Foundation.IAsyncOperation<Windows.Gaming.Input.ForceFeedback.ForceFeedbackLoadEffectResult>** async_op);
|
||||
[propget] HRESULT IsEnabled([out, retval] boolean *value);
|
||||
[propget] HRESULT SupportedAxes([out, retval] Windows.Gaming.Input.ForceFeedback.ForceFeedbackEffectAxes *value);
|
||||
HRESULT LoadEffectAsync([in] Windows.Gaming.Input.ForceFeedback.IForceFeedbackEffect *effect,
|
||||
[out, retval] Windows.Foundation.IAsyncOperation<Windows.Gaming.Input.ForceFeedback.ForceFeedbackLoadEffectResult> **async_op);
|
||||
HRESULT PauseAllEffects();
|
||||
HRESULT ResumeAllEffects();
|
||||
HRESULT StopAllEffects();
|
||||
HRESULT TryDisableAsync([out, retval] Windows.Foundation.IAsyncOperation<boolean>** async_op);
|
||||
HRESULT TryEnableAsync([out, retval] Windows.Foundation.IAsyncOperation<boolean>** async_op);
|
||||
HRESULT TryResetAsync([out, retval] Windows.Foundation.IAsyncOperation<boolean>** async_op);
|
||||
HRESULT TryUnloadEffectAsync([in] Windows.Gaming.Input.ForceFeedback.IForceFeedbackEffect* effect,
|
||||
[out, retval] Windows.Foundation.IAsyncOperation<boolean>** async_op);
|
||||
HRESULT TryDisableAsync([out, retval] Windows.Foundation.IAsyncOperation<boolean> **async_op);
|
||||
HRESULT TryEnableAsync([out, retval] Windows.Foundation.IAsyncOperation<boolean> **async_op);
|
||||
HRESULT TryResetAsync([out, retval] Windows.Foundation.IAsyncOperation<boolean> **async_op);
|
||||
HRESULT TryUnloadEffectAsync([in] Windows.Gaming.Input.ForceFeedback.IForceFeedbackEffect *effect,
|
||||
[out, retval] Windows.Foundation.IAsyncOperation<boolean> **async_op);
|
||||
}
|
||||
|
||||
[
|
||||
|
@ -110,7 +91,4 @@ namespace Windows {
|
|||
{
|
||||
[default] interface Windows.Gaming.Input.ForceFeedback.IForceFeedbackMotor;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue