mirror of
https://github.com/jpd002/Play-.git
synced 2025-05-08 19:48:07 +03:00
13 lines
237 B
C
13 lines
237 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& );
|
||
|
};
|