Proton/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION001.cpp

17 lines
538 B
C++
Raw Normal View History

2018-01-18 19:24:05 +03:00
#include "steam_defs.h"
#include "steamworks_sdk_100/steam_api.h"
#include "steamclient_private.h"
2018-01-18 19:24:05 +03:00
#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION001.h"
#ifdef __cplusplus
extern "C" {
#endif
2018-10-29 21:26:08 +03:00
#include "struct_converters_100.h"
2018-01-18 19:24:05 +03:00
int cppISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData(void *linux_side, AppId_t nAppID, const char * pchKey, char * pchValue, int cchValueMax)
{
return ((ISteamApps*)linux_side)->GetAppData((AppId_t)nAppID, (const char *)pchKey, (char *)pchValue, (int)cchValueMax);
}
#ifdef __cplusplus
}
#endif