2
0
mirror of https://github.com/ValveSoftware/Proton synced 2025-08-31 22:55:18 +00:00

Move lsteamclient out of wine

This commit is contained in:
Andrew Eikum
2018-01-18 10:24:05 -06:00
parent ee74e78c18
commit f07f9247a5
1690 changed files with 463666 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#include "steamclient_private.h"
#include "steam_defs.h"
#include "steamworks_sdk_100/steam_api.h"
#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION001.h"
#ifdef __cplusplus
extern "C" {
#endif
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