IDirectInputDevice2::GetEffectInfo
The IDirectInputDevice2::GetEffectInfo method obtains information about an effect.
HRESULT GetEffectInfo(
LPDIEFFECTINFO pdei,
REFGUID rguid
);
Parameters
pdei
A DIEFFECTINFO structure that receives information about the effect. The caller must initialize the dwSize member of the structure before calling this method.
rguid
Identifier of the effect for which information is being requested.
Return Values
If the method succeeds, the return value is DI_OK.
If the method fails, the return value may be one of the following error values:
DIERR_DEVICENOTREG |
DIERR_INVALIDPARAM |
DIERR_NOTINITIALIZED |
Remarks
In C++ the rguid parameter must be passed by reference; in C, which does not have pass-by-reference, it must be passed by address. The following is an example of a C++ call:
lpdev2->GetEffectInfo(&dei, GUID_Effect);
The following shows the same call in C:
lpdev2->lpVtbl->GetEffectInfo(lpdev2, &dei, &GUID_Effect);
QuickInfo
Windows NT: Use version 5.0 or later.
Windows: Use Windows 95 OSR2 or later. Available as a redistributable for Windows 95.
Windows CE: Unsupported.
Header: Declared in dinput.h.
Import Library: Use dinput.lib.