mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-01 20:51:10 +01:00
20 lines
350 B
C
20 lines
350 B
C
|
// Copyright 2018 Dolphin Emulator Project
|
||
|
// Licensed under GPLv2+
|
||
|
// Refer to the license.txt file included.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "Common/CommonTypes.h"
|
||
|
|
||
|
namespace sf
|
||
|
{
|
||
|
class Packet;
|
||
|
}
|
||
|
|
||
|
namespace Common
|
||
|
{
|
||
|
u16 PacketReadU16(sf::Packet& packet);
|
||
|
u32 PacketReadU32(sf::Packet& packet);
|
||
|
u64 PacketReadU64(sf::Packet& packet);
|
||
|
} // namespace Common
|