diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2024-02-17 22:22:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-17 22:22:06 -0500 |
commit | e7146309dec4fab504977186571228571efed009 (patch) | |
tree | b1302cb237f91c5f0ccb9863a0b0a2fb427a3c14 /src/common/android/id_cache.h | |
parent | 53f8383354470d58ab7a6cb5303708d59883adfa (diff) | |
parent | 50ecad547ea7e88301583f17c9f1eea2cc75b0af (diff) |
Merge pull request #13034 from t895/map-all-the-inputs
android: Input mapping
Diffstat (limited to 'src/common/android/id_cache.h')
-rw-r--r-- | src/common/android/id_cache.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/common/android/id_cache.h b/src/common/android/id_cache.h index 47802f96c..cd2844dcc 100644 --- a/src/common/android/id_cache.h +++ b/src/common/android/id_cache.h @@ -85,4 +85,28 @@ jclass GetBooleanClass(); jmethodID GetBooleanConstructor(); jfieldID GetBooleanValueField(); +jclass GetPlayerInputClass(); +jmethodID GetPlayerInputConstructor(); +jfieldID GetPlayerInputConnectedField(); +jfieldID GetPlayerInputButtonsField(); +jfieldID GetPlayerInputAnalogsField(); +jfieldID GetPlayerInputMotionsField(); +jfieldID GetPlayerInputVibrationEnabledField(); +jfieldID GetPlayerInputVibrationStrengthField(); +jfieldID GetPlayerInputBodyColorLeftField(); +jfieldID GetPlayerInputBodyColorRightField(); +jfieldID GetPlayerInputButtonColorLeftField(); +jfieldID GetPlayerInputButtonColorRightField(); +jfieldID GetPlayerInputProfileNameField(); +jfieldID GetPlayerInputUseSystemVibratorField(); + +jclass GetYuzuInputDeviceInterface(); +jmethodID GetYuzuDeviceGetName(); +jmethodID GetYuzuDeviceGetGUID(); +jmethodID GetYuzuDeviceGetPort(); +jmethodID GetYuzuDeviceGetSupportsVibration(); +jmethodID GetYuzuDeviceVibrate(); +jmethodID GetYuzuDeviceGetAxes(); +jmethodID GetYuzuDeviceHasKeys(); + } // namespace Common::Android |