Class Hint.Joystick.Blacklist
- Namespace
- Sdl3Sharp
- Assembly
- Sdl3Sharp.dll
SDL_HINT_JOYSTICK_BLACKLIST_*
public static class Hint.Joystick.Blacklist
- Inheritance
-
Hint.Joystick.Blacklist
- Inherited Members
Properties
Devices
Gets a hint containing a list of devices that should not be considered joysticks
public static Hint Devices { get; }
Property Value
- Hint
A hint containing a list of devices that should not be considered joysticks
Remarks
The format of this hint is a comma separated list of USB VID/PID pairs in hexadecimal form, e.g. "0xAAAA/0xBBBB,0xCCCC/0xDDDD".
The hint can also take the form of "@file", in which case the named file will be loaded and interpreted as the value of the hint.
This hint can be set anytime.
- See Also
DevicesExcluded
Gets a hint containing a list of devices that should be considered joysticks
public static Hint DevicesExcluded { get; }
Property Value
- Hint
A hint containing a list of devices that should be considered joysticks
Remarks
This hint will override Devices and the built in device list.
The format of this hint is a comma separated list of USB VID/PID pairs in hexadecimal form, e.g. "0xAAAA/0xBBBB,0xCCCC/0xDDDD".
The hint can also take the form of "@file", in which case the named file will be loaded and interpreted as the value of the hint.
This hint can be set anytime.
- See Also