success = SetJoyPortAttrsA(portNumber, tagList);
D0 D0 A1
BOOL SetJoyPortAttrsA(ULONG, struct TagItem *);
Success = SetJoyPortAttrs(portNumber, firstTag, ...);
BOOL SetJoyPortAttrs(Tag, ...);
This function allows modification of several attributes held by
ReadJoyPort() about both it's operation and the type of controller currently plugged into the port.
ReadJoyPort()'s default behavior is to attempt to automatically sense the type of controller plugged into any given port, when asked to read that port. This behavior is beneficial, to allow simple detection of the type of controller plugged into the port. Unfortunately, rare cases are possible where extremely fine mouse movements appear to be real joystick movements. Also, this ability to auto-sense the controller type causes most reads to take longer than if there were no auto-sensing.
SetJoyPortAttrs() is intended to provide for both of these cases. It allows the programmer to notify
ReadJoyPort() to stop spending time attempting to sense which type of controller is in use; and, optionally, to force
ReadJoyPort() into utilizing a certain controller type.