2018-01-18 10:24:05 -06:00
|
|
|
#include "steamclient_private.h"
|
|
|
|
#include "steam_defs.h"
|
|
|
|
#include "steamworks_sdk_100/steam_api.h"
|
|
|
|
#include "steamworks_sdk_100/isteamgameserver.h"
|
|
|
|
extern "C" {
|
2018-10-29 08:54:08 -05:00
|
|
|
#pragma pack( push, 8 )
|
2018-01-18 10:24:05 -06:00
|
|
|
struct winAppDataChanged_t_8 {
|
|
|
|
uint32 m_nAppID;
|
|
|
|
bool m_bBySteamUI;
|
|
|
|
bool m_bCDDBUpdate;
|
|
|
|
} __attribute__ ((ms_struct));
|
2018-10-29 08:54:08 -05:00
|
|
|
#pragma pack( pop )
|
2018-10-29 13:26:08 -05:00
|
|
|
void cb_AppDataChanged_t_8(const void *l, void *w)
|
2018-01-18 10:24:05 -06:00
|
|
|
{
|
|
|
|
AppDataChanged_t *lin = (AppDataChanged_t *)l;
|
|
|
|
struct winAppDataChanged_t_8 *win = (struct winAppDataChanged_t_8 *)w;
|
|
|
|
win->m_nAppID = lin->m_nAppID;
|
|
|
|
win->m_bBySteamUI = lin->m_bBySteamUI;
|
|
|
|
win->m_bCDDBUpdate = lin->m_bCDDBUpdate;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|