1
0
mirror of synced 2024-07-05 01:50:37 +00:00
G940LEDControl/LogitechSDK/SteeringWheel/Src/LogiSurfaceEffect.h

32 lines
754 B
C
Raw Normal View History

2012-01-04 19:11:07 +00:00
#ifndef LOGISURFACEEFFECT_H_INCLUDED_
#define LOGISURFACEEFFECT_H_INCLUDED_
#include "LogiForce.h"
namespace LogitechSteeringWheel
{
class SurfaceEffectParams : public ForceParams
{
public:
SurfaceEffectParams();
DIPERIODIC m_diPeriodic;
DIENVELOPE m_diEnvelope;
CONST struct _GUID *m_type;
};
class LogiSurfaceEffect : public Force
{
public:
LogiSurfaceEffect();
HRESULT CreateEffect(SurfaceEffectParams& params);
HRESULT SetParameters(SurfaceEffectParams& params);
SurfaceEffectParams& GetCurrentForceParams();
private:
SurfaceEffectParams m_currentForceParams;
};
}
#endif // LOGISURFACEEFFECT_H_INCLUDED_