hid integration

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29424 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ryan Norton
2004-09-26 20:35:45 +00:00
parent 115148f733
commit ec8bd3921c
3 changed files with 57 additions and 12 deletions

View File

@@ -1,4 +1,18 @@
#include <wx/wx.h>
/////////////////////////////////////////////////////////////////////////////
// Name: hid.h
// Purpose: DARWIN HID layer for WX
// Author: Ryan Norton
// Modified by:
// Created: 11/11/2003
// RCS-ID: $Id$
// Copyright: (c) Ryan Norton
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#include "wx/defs.h"
#ifdef __DARWIN__
#include <IOKit/IOKitLib.h>
#include <IOKit/IOCFPlugIn.h>
#include <IOKit/hid/IOHIDLib.h>
@@ -60,4 +74,6 @@ class wxHIDKeyboard : public wxHIDDevice
public:
bool Create();
virtual void BuildCookies(wxCFArray& Array);
};
};
#endif //__DARWIN__