replaced wxList for storing HWND <-> wxWindow with wxHashTable

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12250 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-11-02 00:44:19 +00:00
parent a4aad4def6
commit 1bffa9138f
3 changed files with 13 additions and 12 deletions

View File

@@ -28,6 +28,13 @@
// a better solution should be found later...
#define wxUSE_MOUSEEVENT_HACK 0
#include "wx/hash.h"
// pseudo-template HWND <-> wxWindow hash table
WX_DECLARE_HASH(wxWindow, wxWindowList, wxWinHashTable);
extern wxWinHashTable *wxWinHandleHash;
// ---------------------------------------------------------------------------
// constants
// ---------------------------------------------------------------------------