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

cb_converters_112.cpp « lsteamclient - github.com/ValveSoftware/Proton.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 49f1c11cd640ab38407290fafcefeb2172d05483 (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_112/steam_api.h"
#include "steamworks_sdk_112/isteamgameserver.h"
#include "steamworks_sdk_112/isteamgameserverstats.h"
#include "steamworks_sdk_112/isteamgamecoordinator.h"
extern "C" {
struct winLobbyInvite_t_16 {
    uint64 m_ulSteamIDUser;
    uint64 m_ulSteamIDLobby;
}  __attribute__ ((ms_struct));
void cb_LobbyInvite_t_16(void *l, void *w)
{
    LobbyInvite_t *lin = (LobbyInvite_t *)l;
    struct winLobbyInvite_t_16 *win = (struct winLobbyInvite_t_16 *)w;
    win->m_ulSteamIDUser = lin->m_ulSteamIDUser;
    win->m_ulSteamIDLobby = lin->m_ulSteamIDLobby;
}


}