Differences From Artifact [99c6b39cda]:
- File src/hid/OHRightJoyCon.h — part of check-in [146b11b201] at 2024-07-04 18:45:37 on branch trunk — Make conformance to OHEvdevMapping private (user: js, size: 1170) [annotate] [blame] [check-ins using]
To Artifact [a3b8190dff]:
- File
src/hid/OHRightJoyCon.h
— part of check-in
[bc3a7747d9]
at
2024-11-03 15:46:25
on branch trunk
— ObjFWHID: Properly hide private methods
Also fixes compiling XInput with GCC. (user: js, size: 1224) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
24 25 26 27 28 29 30 | /** * @class OHRightJoyCon OHRightJoyCon.h ObjFWHID/ObjFWHID.h * * @brief A right Nintendo Switch Joy-Con. */ @interface OHRightJoyCon: OFObject <OHGameControllerProfile> { | | > > > | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | /** * @class OHRightJoyCon OHRightJoyCon.h ObjFWHID/ObjFWHID.h * * @brief A right Nintendo Switch Joy-Con. */ @interface OHRightJoyCon: OFObject <OHGameControllerProfile> { OFDictionary OF_GENERIC(OFString *, OF_KINDOF(OHGameControllerButton *)) *_buttons; OFDictionary OF_GENERIC(OFString *, OHGameControllerDirectionalPad *) *_directionalPads; } - (instancetype)init OF_UNAVAILABLE; @end OF_ASSUME_NONNULL_END |