mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2026-01-05 05:58:03 +01:00
lsteamclient: Synthesize SDK version 1.16x
For SteamFriends010.
This commit is contained in:
parent
98c51ad7a5
commit
96fe29ba03
34 changed files with 7389 additions and 0 deletions
40
lsteamclient/struct_converters_116x.cpp
Normal file
40
lsteamclient/struct_converters_116x.cpp
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
#include "steam_defs.h"
|
||||
#include "steamworks_sdk_116x/steam_api.h"
|
||||
#include "steamworks_sdk_116x/isteamgameserver.h"
|
||||
#include "steamworks_sdk_116x/isteamgameserverstats.h"
|
||||
#include "steamworks_sdk_116x/isteamgamecoordinator.h"
|
||||
#include "steamclient_private.h"
|
||||
extern "C" {
|
||||
#pragma pack( push, 8 )
|
||||
struct winLeaderboardEntry_t_116x {
|
||||
CSteamID m_steamIDUser;
|
||||
int32 m_nGlobalRank;
|
||||
int32 m_nScore;
|
||||
int32 m_cDetails;
|
||||
UGCHandle_t m_hUGC;
|
||||
} __attribute__ ((ms_struct));
|
||||
#pragma pack( pop )
|
||||
void win_to_lin_struct_LeaderboardEntry_t_116x(const void *w, void *l)
|
||||
{
|
||||
LeaderboardEntry_t *lin = (LeaderboardEntry_t *)l;
|
||||
struct winLeaderboardEntry_t_116x *win = (struct winLeaderboardEntry_t_116x *)w;
|
||||
lin->m_steamIDUser = win->m_steamIDUser;
|
||||
lin->m_nGlobalRank = win->m_nGlobalRank;
|
||||
lin->m_nScore = win->m_nScore;
|
||||
lin->m_cDetails = win->m_cDetails;
|
||||
lin->m_hUGC = win->m_hUGC;
|
||||
}
|
||||
|
||||
void lin_to_win_struct_LeaderboardEntry_t_116x(const void *l, void *w)
|
||||
{
|
||||
LeaderboardEntry_t *lin = (LeaderboardEntry_t *)l;
|
||||
struct winLeaderboardEntry_t_116x *win = (struct winLeaderboardEntry_t_116x *)w;
|
||||
win->m_steamIDUser = lin->m_steamIDUser;
|
||||
win->m_nGlobalRank = lin->m_nGlobalRank;
|
||||
win->m_nScore = lin->m_nScore;
|
||||
win->m_cDetails = lin->m_cDetails;
|
||||
win->m_hUGC = lin->m_hUGC;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue