lsteamclient: Rename cb_converters to struct_converters

This commit is contained in:
Andrew Eikum
2018-10-29 08:52:15 -05:00
parent 161105a012
commit bbf914c044
23 changed files with 6 additions and 5 deletions

View File

@ -0,0 +1,21 @@
#include "steamclient_private.h"
#include "steam_defs.h"
#include "steamworks_sdk_140/steam_api.h"
#include "steamworks_sdk_140/isteamgameserver.h"
#include "steamworks_sdk_140/isteamgameserverstats.h"
#include "steamworks_sdk_140/isteamgamecoordinator.h"
extern "C" {
struct winSubmitItemUpdateResult_t_8 {
EResult m_eResult;
bool m_bUserNeedsToAcceptWorkshopLegalAgreement;
} __attribute__ ((ms_struct));
void cb_SubmitItemUpdateResult_t_8(void *l, void *w)
{
SubmitItemUpdateResult_t *lin = (SubmitItemUpdateResult_t *)l;
struct winSubmitItemUpdateResult_t_8 *win = (struct winSubmitItemUpdateResult_t_8 *)w;
win->m_eResult = lin->m_eResult;
win->m_bUserNeedsToAcceptWorkshopLegalAgreement = lin->m_bUserNeedsToAcceptWorkshopLegalAgreement;
}
}