Overview
Comment: | ObjFWHID: Restore XInput support |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
5f0cc058949d62a490abadf3564af07c |
User & Date: | js on 2024-06-08 19:18:45 |
Other Links: | manifest | tags |
Context
2024-06-08
| ||
19:26 | OHGamepad: Add missing documentation check-in: 21d148d1f9 user: js tags: trunk | |
19:18 | ObjFWHID: Restore XInput support check-in: 5f0cc05894 user: js tags: trunk | |
2024-06-04
| ||
23:51 | Add OHGamepad check-in: c45b04b1f8 user: js tags: trunk | |
Changes
Modified configure.ac from [6db61d455a] to [f83f5209e0].
︙ | |||
2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 | 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 | + + + | case "$host_os" in linux*) AS_IF([test x"$enable_files" != x"no"], [ AC_SUBST(USE_SRCS_EVDEV, '${SRCS_EVDEV}') ]) ;; mingw*) AC_SUBST(USE_SRCS_XINPUT, '${SRCS_XINPUT}') ;; esac AS_IF([test x"$cross_compiling" = x"yes"], [ AC_SUBST(BIN_PREFIX, "${host_alias}-") case "$host" in i?86-*-mingw*) |
︙ |
Modified extra.mk.in from [6abfed9392] to [dae9e19b6f].
︙ | |||
104 105 106 107 108 109 110 111 112 | 104 105 106 107 108 109 110 111 112 113 | + | USE_SRCS_SCTP = @USE_SRCS_SCTP@ USE_SRCS_SOCKETS = @USE_SRCS_SOCKETS@ USE_SRCS_SUBPROCESSES = @USE_SRCS_SUBPROCESSES@ USE_SRCS_TAGGED_POINTERS = @USE_SRCS_TAGGED_POINTERS@ USE_SRCS_THREADS = @USE_SRCS_THREADS@ USE_SRCS_UNIX_SOCKETS = @USE_SRCS_UNIX_SOCKETS@ USE_SRCS_WINDOWS = @USE_SRCS_WINDOWS@ USE_SRCS_XINPUT = @USE_SRCS_XINPUT@ WII_U_TESTS_LIBS = @WII_U_TESTS_LIBS@ WRAPPER = @WRAPPER@ |
Modified src/hid/Makefile from [f964e9ff82] to [df135a085c].
︙ | |||
12 13 14 15 16 17 18 | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | - + + + + | SRCS = OHGameController.m \ OHGameControllerAxis.m \ OHGameControllerButton.m \ OHGameControllerDirectionalPad.m \ OHGameControllerElement.m \ OHGameControllerProfile.m \ OHGamepad.m \ |
︙ |
Modified src/hid/OHGameController.m from [48b11dd8fc] to [501a6c45ed].
︙ | |||
22 23 24 25 26 27 28 | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | - + + + + + + | #import "OHGameController.h" #import "OFArray.h" #import "OFNumber.h" #import "OFSet.h" #import "OHGamepad.h" #if defined(OF_LINUX) && defined(OF_HAVE_FILES) |
︙ |
Added src/hid/OHXInputGameController.h version [9cb565dbba].
|
Added src/hid/OHXInputGameController.m version [44a8b230ca].