2
0
mirror of https://github.com/ValveSoftware/Proton synced 2025-08-31 22:55:18 +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

@@ -119,8 +119,8 @@ void cppISteamClient_SteamClient010_GetIPCCallCount( struct cppISteamClient_Stea
void cppISteamClient_SteamClient010_SetWarningMessageHook( struct cppISteamClient_SteamClient010_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_SteamClient010_BShutdownIfAllPipesClosed( struct cppISteamClient_SteamClient010_BShutdownIfAllPipesClosed_params *params )