mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
76bbd46829
Replaces them with forward declarations of used types, or removes them entirely if they aren't used at all. This also replaces certain Common headers with less inclusive ones (in terms of definitions they pull in).
16 lines
282 B
C++
16 lines
282 B
C++
// Copyright 2015 Dolphin Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
//
|
|
#pragma once
|
|
|
|
#include <enet/enet.h>
|
|
|
|
namespace ENetUtil
|
|
{
|
|
|
|
void WakeupThread(ENetHost* host);
|
|
int ENET_CALLBACK InterceptCallback(ENetHost* host, ENetEvent* event);
|
|
|
|
}
|