mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-01 20:41:02 +01:00
d10a0b440f
Now that SFML's packet class can properly handle 64-bit values, we don't need a helper function just to write values to the packets.
23 lines
405 B
C++
23 lines
405 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
|
|
{
|
|
template <typename value_type>
|
|
struct BigEndianValue;
|
|
|
|
u16 PacketReadU16(sf::Packet& packet);
|
|
u32 PacketReadU32(sf::Packet& packet);
|
|
u64 PacketReadU64(sf::Packet& packet);
|
|
} // namespace Common
|