//
#include "wx/wxprec.h"
+#include "wx/window.h"
+
#ifndef WX_PRECOMP
#define INCL_DOS
#define INCL_PM
#include <os2.h>
- #include "wx/window.h"
#include "wx/accel.h"
#include "wx/menu.h"
#include "wx/dc.h"
#include "wx/toolbar.h"
#include "wx/settings.h"
#include "wx/intl.h"
+ #include "wx/log.h"
#include <stdio.h>
#endif
#endif
#include "wx/menuitem.h"
-#include "wx/log.h"
#include "wx/os2/private.h"
#include "wx/caret.h"
#endif // wxUSE_CARET
-#include "wx/log.h"
-
#include "wx/textctrl.h"
return nKeySym;
} // end of wxCharCodeWXToOS2
+
+bool wxGetKeyState(wxKeyCode key)
+{
+ wxASSERT_MSG(key != WXK_LBUTTON && key != WXK_RBUTTON && key !=
+ WXK_MBUTTON, wxT("can't use wxGetKeyState() for mouse buttons"));
+
+ // TODO
+
+ return false;
+}
+
+
wxWindow* wxGetActiveWindow()
{
HWND hWnd = ::WinQueryActiveWindow(HWND_DESKTOP);