Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cb_converters_137.cpp « lsteamclient - github.com/ValveSoftware/Proton.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8f7ef38d57bca989ab0a9e45e35d893cf54908c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "steamclient_private.h"
#include "steam_defs.h"
#include "steamworks_sdk_137/steam_api.h"
#include "steamworks_sdk_137/isteamgameserver.h"
#include "steamworks_sdk_137/isteamgameserverstats.h"
#include "steamworks_sdk_137/isteamgamecoordinator.h"
extern "C" {
struct winRemoteStorageConflictResolution_t_8 {
    AppId_t m_nAppID;
    EResult m_eResult;
}  __attribute__ ((ms_struct));
void cb_RemoteStorageConflictResolution_t_8(void *l, void *w)
{
    RemoteStorageConflictResolution_t *lin = (RemoteStorageConflictResolution_t *)l;
    struct winRemoteStorageConflictResolution_t_8 *win = (struct winRemoteStorageConflictResolution_t_8 *)w;
    win->m_nAppID = lin->m_nAppID;
    win->m_eResult = lin->m_eResult;
}


}