mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
Common/ENetUtil: Move interface into Common namespace
Rather than just being under a separate ENetUtil namespace, we can unify this into the common namespace as Common::ENet.
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
#include "Common/CommonTypes.h"
|
||||
#include "Common/Logging/Log.h"
|
||||
|
||||
namespace ENetUtil
|
||||
namespace Common::ENet
|
||||
{
|
||||
void WakeupThread(ENetHost* host)
|
||||
{
|
||||
@ -62,4 +62,4 @@ bool SendPacket(ENetPeer* socket, const sf::Packet& packet, u8 channel_id)
|
||||
|
||||
return true;
|
||||
}
|
||||
} // namespace ENetUtil
|
||||
} // namespace Common::ENet
|
||||
|
@ -9,9 +9,9 @@
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
|
||||
namespace ENetUtil
|
||||
namespace Common::ENet
|
||||
{
|
||||
void WakeupThread(ENetHost* host);
|
||||
int ENET_CALLBACK InterceptCallback(ENetHost* host, ENetEvent* event);
|
||||
bool SendPacket(ENetPeer* socket, const sf::Packet& packet, u8 channel_id);
|
||||
} // namespace ENetUtil
|
||||
} // namespace Common::ENet
|
||||
|
Reference in New Issue
Block a user