6ed890c9e9
CW-Bug-Id: #22649
30 lines
742 B
C++
30 lines
742 B
C++
extern "C" {
|
|
#include <stdarg.h>
|
|
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
#include "wine/debug.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(steamclient);
|
|
}
|
|
|
|
#include "steam_defs.h"
|
|
#pragma push_macro("__cdecl")
|
|
#undef __cdecl
|
|
#include "steamworks_sdk_141/steam_api.h"
|
|
#pragma pop_macro("__cdecl")
|
|
#include "steamclient_private.h"
|
|
|
|
#define SDK_VERSION 1410
|
|
#include "steamclient_manual_common.h"
|
|
|
|
extern "C" {
|
|
|
|
const char * cppISteamController_SteamController005_GetGlyphForActionOrigin(void *linux_side, EControllerActionOrigin eOrigin)
|
|
{
|
|
const char *path_result;
|
|
path_result = ((ISteamController*)linux_side)->GetGlyphForActionOrigin((EControllerActionOrigin)eOrigin);
|
|
return steamclient_isteamcontroller_getglyph(eOrigin, path_result);
|
|
}
|
|
|
|
}
|