Microsoft DirectX 8.1 (Visual Basic)

CONST_DINPUT

The CONST_DINPUT enumeration contains various constants that are used throughout Microsoft® DirectInput®.

Enum CONST_DINPUT
    DIEB_NOTRIGGER               =          -1 (&HFFFFFFFF)
    DIPROPAUTOCENTER_OFF         =           0
    DIPROPAUTOCENTER_ON          =           1
    DIPROPAXISMODE_ABS           =           0
    DIPROPAXISMODE_REL           =           1
    DIPROPCALIBRATIONMODE_COOKED =           0
    DIPROPCALIBRATIONMODE_RAW    =           1
    DIPROPRANGE_NOMAX            =  2147483647 (&H7FFFFFFF)
    DIPROPRANGE_NOMIN            = -2147483648 (&H80000000)
End Enum

Constants

DIEB_NOTRIGGER
Used in the lTriggerButton member of the DIEFFECT type to specify that the effect has no trigger button.
DIPROPAUTOCENTER_OFF
The device should not automatically center when the user releases it. See DirectInputDevice8.SetProperty.
DIPROPAUTOCENTER_ON
The device should automatically center when the user releases it. See DirectInputDevice8.SetProperty.
DIPROPAXISMODE_ABS
Used in DirectInputDevice8.GetProperty and DirectInputDevice8.SetProperty to represent absolute axis mode.
DIPROPAXISMODE_REL
Used in DirectInputDevice8.GetProperty and DirectInputDevice8.SetProperty to represent relative axis mode.
DIPROPCALIBRATIONMODE_COOKED
Used in DirectInputDevice8.SetProperty to set the DIPROP_CALIBRATIONMODE property.
DIPROPCALIBRATIONMODE_RAW
Used in DirectInputDevice8.SetProperty to set the DIPROP_CALIBRATIONMODE property.
DIPROPRANGE_NOMAX
Returned from DirectInputDevice8.GetProperty if the axis has no upper limit on its range.
DIPROPRANGE_NOMIN
Returned from DirectInputDevice8.GetProperty if the axis has no lower limit on its range.