This commit is contained in:
Steve Checkoway
2006-01-18 09:44:30 +00:00
parent 852ba5f336
commit d5cde8a0f7
2 changed files with 10 additions and 9 deletions
@@ -82,7 +82,9 @@ protected:
virtual void Open() = 0;
inline void AddElementToQueue( int cookie )
{ CALL( mQueue, addElement, IOHIDElementCookie(cookie), 0 ); }
{
CALL( mQueue, addElement, IOHIDElementCookie(cookie), 0 );
}
public:
Device();
virtual ~Device();
@@ -23,8 +23,7 @@ public:
InputHandler_Carbon();
~InputHandler_Carbon();
void GetDevicesAndDescriptions( vector<InputDevice>& vDevicesOut,
vector<CString>& vDescriptionsOut );
void GetDevicesAndDescriptions( vector<InputDevice>& vDevicesOut, vector<CString>& vDescriptionsOut );
static void QueueCallBack( void *target, int result, void *refcon, void *sender );
};