lsteamclient: Move ISteamNetworkingFakeUDPPort creation / destroy to the PE side.

CW-Bug-Id: #22729
This commit is contained in:
Rémi Bernon
2023-09-29 11:35:29 +02:00
committed by Arkadiusz Hiler
parent 537b4096a5
commit 96a26ea211
9 changed files with 37 additions and 40 deletions

View File

@ -0,0 +1,15 @@
#include "steamclient_private.h"
#include "cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001.h"
WINE_DEFAULT_DEBUG_CHANNEL(steamclient);
/* ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001 */
void __thiscall winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort( struct w_steam_iface *_this )
{
struct cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort_params params = {.linux_side = _this->u_iface};
TRACE( "%p\n", _this );
cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort( &params );
HeapFree( GetProcessHeap(), 0, _this );
}