Proton/lsteamclient/struct_converters_112.cpp

24 lines
698 B
C++
Raw Normal View History

2018-01-18 19:24:05 +03:00
#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" {
#pragma pack( push, 8 )
2018-01-18 19:24:05 +03:00
struct winLobbyInvite_t_16 {
uint64 m_ulSteamIDUser;
uint64 m_ulSteamIDLobby;
} __attribute__ ((ms_struct));
#pragma pack( pop )
2018-01-18 19:24:05 +03:00
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;
}
}