t7x/src/client/steam/interfaces/unified_messages.cpp

35 lines
1.0 KiB
C++
Raw Normal View History

2022-05-21 06:04:08 -04:00
#include <std_include.hpp>
#include "../steam.hpp"
namespace steam
{
2022-05-23 11:57:45 -04:00
ClientUnifiedMessageHandle unified_messages::SendMethod(const char* pchServiceMethod, const void* pRequestBuffer,
uint32_t unRequestBufferSize, uint64_t unContext)
{
return 0;
}
2022-05-21 06:04:08 -04:00
2022-05-23 11:57:45 -04:00
bool unified_messages::GetMethodResponseInfo(ClientUnifiedMessageHandle hHandle, uint32_t* punResponseSize,
uint32_t* peResult)
{
return false;
}
2022-05-21 06:04:08 -04:00
2022-05-23 11:57:45 -04:00
bool unified_messages::GetMethodResponseData(ClientUnifiedMessageHandle hHandle, void* pResponseBuffer,
uint32_t unResponseBufferSize, bool bAutoRelease)
{
return false;
}
2022-05-21 06:04:08 -04:00
2022-05-23 11:57:45 -04:00
bool unified_messages::ReleaseMethod(ClientUnifiedMessageHandle hHandle)
{
return false;
}
2022-05-21 06:04:08 -04:00
2022-05-23 11:57:45 -04:00
bool unified_messages::SendNotification(const char* pchServiceNotification, const void* pNotificationBuffer,
uint32_t unNotificationBufferSize)
{
return false;
}
2022-05-21 06:04:08 -04:00
}