Overview
Comment: | Fix Windows build |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
4c43cc9137b9e466a15979a220946d66 |
User & Date: | js on 2024-06-17 01:02:51 |
Other Links: | manifest | tags |
Context
2024-06-17
| ||
21:08 | Always use <ObjFW/ObjFW.h> in documentation check-in: 164f2fb4bf user: js tags: trunk | |
01:02 | Fix Windows build check-in: 4c43cc9137 user: js tags: trunk | |
00:59 | Fix Nintendo DS / 3DS / Switch / Wii check-in: 02797b8805 user: js tags: trunk | |
Changes
Modified src/hid/OHXInputGameController.h from [2116ecadbe] to [986c587ab0].
︙ | ︙ | |||
19 20 21 22 23 24 25 | #import "OHGameController.h" #include <windows.h> OF_ASSUME_NONNULL_BEGIN | | | | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | #import "OHGameController.h" #include <windows.h> OF_ASSUME_NONNULL_BEGIN @class OHXboxGamepad; @interface OHXInputGameController: OHGameController { DWORD _index; OFNumber *_Nullable _vendorID, *_Nullable _productID; OHXboxGamepad *_extendedGamepad; } - (instancetype)initWithIndex: (DWORD)index; @end OF_ASSUME_NONNULL_END |