mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2026-01-02 04:34:29 +01:00
lsteamclient: Rename cb_converters to struct_converters
This commit is contained in:
parent
161105a012
commit
bbf914c044
23 changed files with 6 additions and 5 deletions
21
lsteamclient/struct_converters_111.cpp
Normal file
21
lsteamclient/struct_converters_111.cpp
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#include "steamclient_private.h"
|
||||
#include "steam_defs.h"
|
||||
#include "steamworks_sdk_111/steam_api.h"
|
||||
#include "steamworks_sdk_111/isteamgameserver.h"
|
||||
#include "steamworks_sdk_111/isteamgameserverstats.h"
|
||||
#include "steamworks_sdk_111/isteamgamecoordinator.h"
|
||||
extern "C" {
|
||||
struct winLobbyDataUpdate_t_16 {
|
||||
uint64 m_ulSteamIDLobby;
|
||||
uint64 m_ulSteamIDMember;
|
||||
} __attribute__ ((ms_struct));
|
||||
void cb_LobbyDataUpdate_t_16(void *l, void *w)
|
||||
{
|
||||
LobbyDataUpdate_t *lin = (LobbyDataUpdate_t *)l;
|
||||
struct winLobbyDataUpdate_t_16 *win = (struct winLobbyDataUpdate_t_16 *)w;
|
||||
win->m_ulSteamIDLobby = lin->m_ulSteamIDLobby;
|
||||
win->m_ulSteamIDMember = lin->m_ulSteamIDMember;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue