mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2026-01-10 16:38:00 +01:00
Move lsteamclient out of wine
This commit is contained in:
parent
ee74e78c18
commit
f07f9247a5
1690 changed files with 463666 additions and 0 deletions
29
lsteamclient/cb_converters_104.cpp
Normal file
29
lsteamclient/cb_converters_104.cpp
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
#include "steamclient_private.h"
|
||||
#include "steam_defs.h"
|
||||
#include "steamworks_sdk_104/steam_api.h"
|
||||
#include "steamworks_sdk_104/isteamgameserver.h"
|
||||
extern "C" {
|
||||
struct winLobbyClosing_t_8 {
|
||||
uint64 m_ulSteamIDLobby;
|
||||
} __attribute__ ((ms_struct));
|
||||
void cb_LobbyClosing_t_8(void *l, void *w)
|
||||
{
|
||||
LobbyClosing_t *lin = (LobbyClosing_t *)l;
|
||||
struct winLobbyClosing_t_8 *win = (struct winLobbyClosing_t_8 *)w;
|
||||
win->m_ulSteamIDLobby = lin->m_ulSteamIDLobby;
|
||||
}
|
||||
|
||||
struct winLobbyKicked_t_16 {
|
||||
uint64 m_ulSteamIDLobby;
|
||||
uint64 m_ulSteamIDAdmin;
|
||||
} __attribute__ ((ms_struct));
|
||||
void cb_LobbyKicked_t_16(void *l, void *w)
|
||||
{
|
||||
LobbyKicked_t *lin = (LobbyKicked_t *)l;
|
||||
struct winLobbyKicked_t_16 *win = (struct winLobbyKicked_t_16 *)w;
|
||||
win->m_ulSteamIDLobby = lin->m_ulSteamIDLobby;
|
||||
win->m_ulSteamIDAdmin = lin->m_ulSteamIDAdmin;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue