mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Common: Namespace Network.h/.cpp
Necessary to avoid namespace clashes with IOS HLE's namespace name.
This commit is contained in:
@ -8,10 +8,12 @@
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
|
||||
enum MACConsumer
|
||||
namespace Common
|
||||
{
|
||||
BBA = 0,
|
||||
IOS = 1
|
||||
enum class MACConsumer
|
||||
{
|
||||
BBA,
|
||||
IOS
|
||||
};
|
||||
|
||||
enum
|
||||
@ -22,3 +24,4 @@ enum
|
||||
void GenerateMacAddress(const MACConsumer type, u8* mac);
|
||||
std::string MacAddressToString(const u8* mac);
|
||||
bool StringToMacAddress(const std::string& mac_string, u8* mac);
|
||||
} // namespace Common
|
||||
|
Reference in New Issue
Block a user