2
0
mirror of https://github.com/ValveSoftware/Proton synced 2025-09-01 15:25:11 +00:00

lsteamclient: Generate functions with calling convention.

CW-Bug-Id: #22729
This commit is contained in:
Rémi Bernon
2023-09-19 21:24:23 +02:00
parent 2ed2dfd7be
commit 99e5c542c0
62 changed files with 200 additions and 167 deletions

View File

@@ -124,8 +124,8 @@ void cppISteamClient_SteamClient011_GetIPCCallCount( struct cppISteamClient_Stea
void cppISteamClient_SteamClient011_SetWarningMessageHook( struct cppISteamClient_SteamClient011_SetWarningMessageHook_params *params )
{
params->pFunction = (SteamAPIWarningMessageHook_t)manual_convert_SteamAPIWarningMessageHook_t( (void *)params->pFunction );
((ISteamClient*)params->linux_side)->SetWarningMessageHook( (SteamAPIWarningMessageHook_t)params->pFunction );
SteamAPIWarningMessageHook_t lin_pFunction = (SteamAPIWarningMessageHook_t)manual_convert_SteamAPIWarningMessageHook_t( (void *)params->pFunction );
((ISteamClient*)params->linux_side)->SetWarningMessageHook( lin_pFunction );
}
void cppISteamClient_SteamClient011_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient011_BShutdownIfAllPipesClosed_params *params )