mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 04:38:49 +00:00
Common: Rename ENetUtil.cpp/.h to ENet.cpp/.h
This commit is contained in:
parent
64ce2012e3
commit
09e11b8067
6 changed files with 7 additions and 7 deletions
17
Source/Core/Common/ENet.h
Normal file
17
Source/Core/Common/ENet.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue