Common: Rename ENetUtil.cpp/.h to ENet.cpp/.h

This commit is contained in:
Lioncash
2023-04-11 11:48:46 -04:00
parent 64ce2012e3
commit 09e11b8067
6 changed files with 7 additions and 7 deletions

17
Source/Core/Common/ENet.h Normal file
View File

@ -0,0 +1,17 @@
// Copyright 2015 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
//
#pragma once
#include <enet/enet.h>
#include <SFML/Network/Packet.hpp>
#include "Common/CommonTypes.h"
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 Common::ENet