Files
WinDurango/dlls/winrt_x/Implementation/Microsoft.Xbox.Services.GameServerPlatform.GameServerPortMapping.cpp
T
2025-06-03 00:54:43 -04:00

21 lines
659 B
C++

#include "pch.h"
#include "Microsoft.Xbox.Services.GameServerPlatform.GameServerPortMapping.h"
#include "Microsoft.Xbox.Services.GameServerPlatform.GameServerPortMapping.g.cpp"
namespace winrt::Microsoft::Xbox::Services::GameServerPlatform::implementation
{
hstring GameServerPortMapping::PortName()
{
Logger::NotImplemented(); throw hresult_not_implemented();
}
uint32_t GameServerPortMapping::InternalPortNumber()
{
Logger::NotImplemented(); throw hresult_not_implemented();
}
uint32_t GameServerPortMapping::ExternalPortNumber()
{
Logger::NotImplemented(); throw hresult_not_implemented();
}
}