Differences From Artifact [08dcd8d0d7]:
- File
src/hid/OHEvdevDualSense.h
— part of check-in
[998339ff24]
at
2024-06-09 11:43:49
on branch trunk
— OHGamepad: Move some elements to OHExtendedGamepad
This allows to have a profile for limited gamepads such as found on the
Nintendo DS rather than only having the raw profile for those. (user: js, size: 895) [annotate] [blame] [check-ins using]
To Artifact [cbc8819966]:
- File src/hid/OHDualSenseGamepad.h — part of check-in [ddaa4f35d0] at 2024-06-17 00:37:04 on branch trunk — ObjFWHID: Make profiles implementation independent (user: js, size: 1042) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
13 14 15 16 17 18 19 | * version 3.0 for more details. * * You should have received a copy of the GNU Lesser General Public License * version 3.0 along with this program. If not, see * <https://www.gnu.org/licenses/>. */ | | > > > | > > > > | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | * version 3.0 for more details. * * You should have received a copy of the GNU Lesser General Public License * version 3.0 along with this program. If not, see * <https://www.gnu.org/licenses/>. */ #import "OHExtendedGamepad.h" #if defined(OF_LINUX) && defined(OF_HAVE_FILES) # import "OHEvdevGameController.h" #endif OF_ASSUME_NONNULL_BEGIN @interface OHDualSenseGamepad: OFObject <OHExtendedGamepad, #if defined(OF_LINUX) && defined(OF_HAVE_FILES) OHEvdevMapping #endif > @end OF_ASSUME_NONNULL_END |