2023-09-30 15:02:30 +03:00
|
|
|
#include "unix_private.h"
|
2021-10-08 19:09:30 +03:00
|
|
|
|
2023-09-24 12:11:25 +03:00
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#define SDK_VERSION 1510
|
|
|
|
#include "steamclient_manual_common.h"
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "cppISteamInput_SteamInput002.hpp"
|
2021-10-08 19:09:30 +03:00
|
|
|
|
2023-09-27 15:34:23 +03:00
|
|
|
void cppISteamInput_SteamInput002_GetGlyphForActionOrigin( struct cppISteamInput_SteamInput002_GetGlyphForActionOrigin_params *params )
|
2021-10-08 20:58:43 +03:00
|
|
|
{
|
2023-09-30 15:02:30 +03:00
|
|
|
struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side;
|
2023-09-24 12:11:25 +03:00
|
|
|
params->_ret = iface->GetGlyphForActionOrigin( params->eOrigin );
|
2023-09-27 15:34:23 +03:00
|
|
|
params->_ret = steamclient_isteaminput_getglyph( params->eOrigin, params->_ret );
|
2021-10-08 20:58:43 +03:00
|
|
|
}
|
|
|
|
|
2023-09-27 15:34:23 +03:00
|
|
|
void cppISteamInput_SteamInput002_GetGlyphForXboxOrigin( struct cppISteamInput_SteamInput002_GetGlyphForXboxOrigin_params *params )
|
|
|
|
{
|
2023-09-30 15:02:30 +03:00
|
|
|
struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side;
|
2023-09-24 12:11:25 +03:00
|
|
|
params->_ret = iface->GetGlyphForXboxOrigin( params->eOrigin );
|
2023-09-27 15:34:23 +03:00
|
|
|
params->_ret = steamclient_isteaminput_getglyph_xbox( params->eOrigin, params->_ret );
|
2021-10-08 19:09:30 +03:00
|
|
|
}
|