2023-09-17 23:16:30 +02:00
|
|
|
#include "steamclient_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"
|
|
|
|
}
|
|
|
|
|
2021-10-08 11:09:30 -05:00
|
|
|
#pragma push_macro("__cdecl")
|
|
|
|
#undef __cdecl
|
2023-09-20 08:23:56 +02:00
|
|
|
#pragma push_macro("strncpy")
|
|
|
|
#undef strncpy
|
2023-09-24 11:11:25 +02:00
|
|
|
#include "cppISteamInput_SteamInput002.hpp"
|
2021-10-08 11:09:30 -05:00
|
|
|
#pragma pop_macro("__cdecl")
|
2023-09-20 08:23:56 +02:00
|
|
|
#pragma pop_macro("strncpy")
|
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-24 11:11:25 +02:00
|
|
|
struct cppISteamInput_SteamInput002 *iface = (struct cppISteamInput_SteamInput002 *)params->linux_side;
|
|
|
|
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-24 11:11:25 +02:00
|
|
|
struct cppISteamInput_SteamInput002 *iface = (struct cppISteamInput_SteamInput002 *)params->linux_side;
|
|
|
|
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
|
|
|
}
|