Differences From Artifact [214e4b0857]:
- File src/hid/OHN64Controller.h — part of check-in [146b11b201] at 2024-07-04 18:45:37 on branch trunk — Make conformance to OHEvdevMapping private (user: js, size: 1169) [annotate] [blame] [check-ins using]
To Artifact [a09d540cf6]:
- File
src/hid/OHN64Controller.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: 1223) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
24 25 26 27 28 29 30 | /** * @class OHN64Controller OHN64Controller.h ObjFWHID/ObjFWHID.h * * @brief A Nintendo 64 controller. */ @interface OHN64Controller: OFObject <OHGameControllerProfile> { | | > > > | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | /** * @class OHN64Controller OHN64Controller.h ObjFWHID/ObjFWHID.h * * @brief A Nintendo 64 controller. */ @interface OHN64Controller: 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 |