mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-30 06:27:59 +03:00
12 lines
231 B
C++
12 lines
231 B
C++
#pragma once
|
|
|
|
#include <libevdev.h>
|
|
#include <array>
|
|
#include "Types.h"
|
|
|
|
class CGamePadUtils
|
|
{
|
|
public:
|
|
static std::array<uint32, 6> GetDeviceID(libevdev* dev);
|
|
static bool ParseMAC(std::array<uint32, 6>&, std::string const&);
|
|
};
|