2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2014-03-06 11:09:12 -07:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
|
|
|
enum MACConsumer
|
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
BBA = 0,
|
|
|
|
IOS = 1
|
2014-03-06 11:09:12 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
MAC_ADDRESS_SIZE = 6
|
2014-03-06 11:09:12 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
void GenerateMacAddress(const MACConsumer type, u8* mac);
|
|
|
|
std::string MacAddressToString(const u8* mac);
|
|
|
|
bool StringToMacAddress(const std::string& mac_string, u8* mac);
|