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