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