mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2026-01-01 20:24:25 +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_137.cpp
Normal file
21
lsteamclient/struct_converters_137.cpp
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#include "steamclient_private.h"
|
||||
#include "steam_defs.h"
|
||||
#include "steamworks_sdk_137/steam_api.h"
|
||||
#include "steamworks_sdk_137/isteamgameserver.h"
|
||||
#include "steamworks_sdk_137/isteamgameserverstats.h"
|
||||
#include "steamworks_sdk_137/isteamgamecoordinator.h"
|
||||
extern "C" {
|
||||
struct winRemoteStorageConflictResolution_t_8 {
|
||||
AppId_t m_nAppID;
|
||||
EResult m_eResult;
|
||||
} __attribute__ ((ms_struct));
|
||||
void cb_RemoteStorageConflictResolution_t_8(void *l, void *w)
|
||||
{
|
||||
RemoteStorageConflictResolution_t *lin = (RemoteStorageConflictResolution_t *)l;
|
||||
struct winRemoteStorageConflictResolution_t_8 *win = (struct winRemoteStorageConflictResolution_t_8 *)w;
|
||||
win->m_nAppID = lin->m_nAppID;
|
||||
win->m_eResult = lin->m_eResult;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue