mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2026-01-06 22:48:11 +01:00
lsteamclient: Synthesize SDK version 1.21x
For STEAMREMOTESTORAGE_INTERFACE_VERSION009.
This commit is contained in:
parent
bf1fea6219
commit
f3c4547fc7
33 changed files with 7740 additions and 0 deletions
40
lsteamclient/struct_converters_121x.cpp
Normal file
40
lsteamclient/struct_converters_121x.cpp
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
#include "steam_defs.h"
|
||||
#include "steamworks_sdk_121x/steam_api.h"
|
||||
#include "steamworks_sdk_121x/isteamgameserver.h"
|
||||
#include "steamworks_sdk_121x/isteamgameserverstats.h"
|
||||
#include "steamworks_sdk_121x/isteamgamecoordinator.h"
|
||||
#include "steamclient_private.h"
|
||||
extern "C" {
|
||||
#pragma pack( push, 8 )
|
||||
struct winLeaderboardEntry_t_121x {
|
||||
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_121x(const void *w, void *l)
|
||||
{
|
||||
LeaderboardEntry_t *lin = (LeaderboardEntry_t *)l;
|
||||
struct winLeaderboardEntry_t_121x *win = (struct winLeaderboardEntry_t_121x *)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_121x(const void *l, void *w)
|
||||
{
|
||||
LeaderboardEntry_t *lin = (LeaderboardEntry_t *)l;
|
||||
struct winLeaderboardEntry_t_121x *win = (struct winLeaderboardEntry_t_121x *)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