mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 06:07:56 +03:00
13 lines
231 B
C
13 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&);
|
||
|
};
|