Differences From Artifact [986c587ab0]:
- File src/hid/OHXInputGameController.h — part of check-in [4c43cc9137] at 2024-06-17 01:02:51 on branch trunk — Fix Windows build (user: js, size: 1066) [annotate] [blame] [check-ins using]
To Artifact [6ebbc4a0ee]:
- File
src/hid/OHXInputGameController.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: 1162) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
28 29 30 31 32 33 34 | @interface OHXInputGameController: OHGameController { DWORD _index; OFNumber *_Nullable _vendorID, *_Nullable _productID; OHXboxGamepad *_extendedGamepad; } | > | > | 28 29 30 31 32 33 34 35 36 37 38 39 40 | @interface OHXInputGameController: OHGameController { DWORD _index; OFNumber *_Nullable _vendorID, *_Nullable _productID; OHXboxGamepad *_extendedGamepad; } - (instancetype)oh_init OF_UNAVAILABLE; - (instancetype)oh_initWithIndex: (DWORD)index OF_METHOD_FAMILY(init) OF_DESIGNATED_INITIALIZER; @end OF_ASSUME_NONNULL_END |