mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2025-12-06 12:14:54 +01:00
sdk 1.55
This commit is contained in:
parent
0fc5a564e1
commit
ba877b6e78
9 changed files with 44 additions and 1 deletions
|
|
@ -704,6 +704,11 @@ struct SteamInputActionEvent_t
|
|||
} x;
|
||||
};
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Forward declaration for ScePadTriggerEffectParam, defined in isteamdualsense.h
|
||||
//-----------------------------------------------------------------------------
|
||||
struct ScePadTriggerEffectParam;
|
||||
|
||||
#pragma pack( pop )
|
||||
|
||||
typedef void ( *SteamInputActionEventCallbackPointer )( SteamInputActionEvent_t * );
|
||||
|
|
@ -917,6 +922,9 @@ public:
|
|||
// Get a bitmask of the Steam Input Configuration types opted in for the current session. Returns ESteamInputConfigurationEnableType values.?
|
||||
// Note: user can override the settings from the Steamworks Partner site so the returned values may not exactly match your default configuration
|
||||
virtual uint16 GetSessionInputConfigurationSettings() = 0;
|
||||
|
||||
// Set the trigger effect for a DualSense controller
|
||||
virtual void SetDualSenseTriggerEffect( InputHandle_t inputHandle, const ScePadTriggerEffectParam *pParam ) = 0;
|
||||
};
|
||||
|
||||
#define STEAMINPUT_INTERFACE_VERSION "SteamInput006"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue