Files
itgmania212121/stepmania/src/archutils/Win32/USB.h
T

27 lines
500 B
C++
Raw Normal View History

2003-03-19 20:34:40 +00:00
#ifndef WIN32_USB_H
#define WIN32_USB_H
class USBDevice
{
public:
USBDevice();
~USBDevice();
int GetPadEvent();
bool Open(int VID, int PID, int num);
2003-05-28 02:35:05 +00:00
bool IsOpen();
2003-03-19 20:34:40 +00:00
private:
HANDLE h;
OVERLAPPED ov;
long buf;
bool pending;
};
#endif
/*
-----------------------------------------------------------------------------
Copyright (c) 2002-2003 by the person(s) listed below. All rights reserved.
Glenn Maynard
-----------------------------------------------------------------------------
*/