mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Common: Rename ENetUtil.cpp/.h to ENet.cpp/.h
This commit is contained in:
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
|
Reference in New Issue
Block a user