2
0
mirror of https://github.com/ValveSoftware/Proton synced 2025-08-22 10:17:18 +00:00
Proton/lsteamclient/struct_converters_122.cpp

34 lines
1.3 KiB
C++
Raw Normal View History

2018-01-18 10:24:05 -06:00
#include "steamclient_private.h"
#include "steam_defs.h"
#include "steamworks_sdk_122/steam_api.h"
#include "steamworks_sdk_122/isteamgameserver.h"
#include "steamworks_sdk_122/isteamgameserverstats.h"
#include "steamworks_sdk_122/isteamgamecoordinator.h"
extern "C" {
#pragma pack( push, 8 )
2018-01-18 10:24:05 -06:00
struct winRemoteStorageSubscribePublishedFileResult_t_4 {
EResult m_eResult;
} __attribute__ ((ms_struct));
#pragma pack( pop )
2018-01-18 10:24:05 -06:00
void cb_RemoteStorageSubscribePublishedFileResult_t_4(void *l, void *w)
{
RemoteStorageSubscribePublishedFileResult_t *lin = (RemoteStorageSubscribePublishedFileResult_t *)l;
struct winRemoteStorageSubscribePublishedFileResult_t_4 *win = (struct winRemoteStorageSubscribePublishedFileResult_t_4 *)w;
win->m_eResult = lin->m_eResult;
}
#pragma pack( push, 8 )
2018-01-18 10:24:05 -06:00
struct winRemoteStorageUnsubscribePublishedFileResult_t_4 {
EResult m_eResult;
} __attribute__ ((ms_struct));
#pragma pack( pop )
2018-01-18 10:24:05 -06:00
void cb_RemoteStorageUnsubscribePublishedFileResult_t_4(void *l, void *w)
{
RemoteStorageUnsubscribePublishedFileResult_t *lin = (RemoteStorageUnsubscribePublishedFileResult_t *)l;
struct winRemoteStorageUnsubscribePublishedFileResult_t_4 *win = (struct winRemoteStorageUnsubscribePublishedFileResult_t_4 *)w;
win->m_eResult = lin->m_eResult;
}
}