quickdev16/bsnes/lib/ruby/input/directinput.hpp
2009-04-08 21:29:36 +02:00

23 lines
331 B
C++
Executable File

class pInputDI;
class InputDI : public Input {
public:
bool cap(Setting);
uintptr_t get(Setting);
bool set(Setting, uintptr_t);
bool acquire();
bool unacquire();
bool acquired();
bool poll(int16_t *table);
bool init();
void term();
InputDI();
~InputDI();
private:
pInputDI &p;
};