mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 23:00:42 +00:00
21 lines
386 B
C++
21 lines
386 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
struct IGpInputDriver;
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
class HostInputDriver
|
|
{
|
|
public:
|
|
static size_t NumInstances();
|
|
static IGpInputDriver *GetInstance(size_t index);
|
|
static void SetInstances(IGpInputDriver *const* instances, size_t numInstances);
|
|
|
|
private:
|
|
static IGpInputDriver *const* ms_instances;
|
|
static size_t ms_numInstances;
|
|
};
|
|
}
|